build.gradle 540 B

12345678910111213141516171819202122232425
  1. apply plugin: 'com.android.library'
  2. apply from: 'library.gradle'
  3. android {
  4. compileSdkVersion 30
  5. defaultConfig {
  6. minSdkVersion 14
  7. targetSdkVersion 30
  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. testImplementation 'junit:junit:4.12'
  19. implementation 'com.shanp.android:base-rx-mvc:1.0.9'
  20. }