build.gradle 394 B

1234567891011121314151617181920212223
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.github.dcendents.android-maven'
  3. group = 'com.github.pedroSG94'
  4. android {
  5. compileSdkVersion 30
  6. defaultConfig {
  7. minSdkVersion 16
  8. targetSdkVersion 30
  9. versionCode 195
  10. versionName "1.9.5"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. }
  16. }
  17. }
  18. dependencies {
  19. api 'androidx.annotation:annotation:1.1.0'
  20. }