build.gradle 516 B

123456789101112131415161718192021222324
  1. apply plugin: 'com.android.library'
  2. apply from: 'library.gradle'
  3. android {
  4. compileSdkVersion 30
  5. buildToolsVersion '31.0.0-rc3'
  6. defaultConfig {
  7. minSdkVersion 9
  8. targetSdkVersion 30
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  14. }
  15. }
  16. }
  17. dependencies {
  18. implementation fileTree(include: ['*.jar'], dir: 'libs')
  19. testImplementation 'junit:junit:4.12'
  20. }