build.gradle 765 B

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 29
  4. defaultConfig {
  5. minSdkVersion 15
  6. targetSdkVersion 29
  7. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  8. }
  9. buildTypes {
  10. release {
  11. minifyEnabled false
  12. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  13. }
  14. }
  15. }
  16. dependencies {
  17. implementation fileTree(dir: 'libs', include: ['*.jar'])
  18. implementation 'androidx.appcompat:appcompat:1.2.0'
  19. testImplementation 'junit:junit:4.13'
  20. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  21. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  22. }
  23. apply from: './bintrayUpload.gradle'