12345678910111213141516171819202122232425 |
- apply plugin: 'com.android.library'
- apply from: 'library.gradle'
- android {
- compileSdkVersion 30
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 30
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- testImplementation 'junit:junit:4.12'
- implementation 'com.shanp.android:base-rx-mvc:1.0.9'
- }
|