build.gradle 555 B

123456789101112131415161718192021222324
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.github.dcendents.android-maven'
  3. group = 'com.github.pedroSG94'
  4. android {
  5. compileSdkVersion versionCompiler
  6. defaultConfig {
  7. minSdkVersion 19
  8. targetSdkVersion versionTarget
  9. versionCode 161
  10. versionName "1.6.1"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. api 'androidx.annotation:annotation:1.1.0'
  21. }