22 lines
448 B
Groovy
22 lines
448 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
namespace 'chihane.jdaddressselector'
|
|
compileSdkVersion 29
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 29
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
} |