123456789101112131415161718192021222324252627282930 |
- apply plugin: 'com.android.library'
- android {
- compileSdk rootProject.ext.androidConfig.compileSdk
- defaultConfig {
- minSdk rootProject.ext.androidConfig.minSdk
- targetSdk rootProject.ext.androidConfig.targetSdk
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- defaultConfig {
- vectorDrawables.useSupportLibrary = true
- }
- tasks.withType(Javadoc).all { enabled = false }
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- testImplementation 'junit:junit:4.13.2'
- implementation 'androidx.core:core:1.6.0'
- implementation 'io.michaelrocks:libphonenumber-android:8.12.52'
- // implementation "androidx.cardview:cardview:1.0.0"
- implementation project(':OUICore')
- }
|