build.gradle 504 B

12345678910111213141516171819202122232425
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'com.github.dcendents.android-maven'
  4. group = 'com.github.pedroSG94'
  5. android {
  6. compileSdkVersion 30
  7. defaultConfig {
  8. minSdkVersion 16
  9. targetSdkVersion 30
  10. versionCode 195
  11. versionName "1.9.5"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. consumerProguardFiles 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  22. }