30 lines
811 B
Groovy
30 lines
811 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion = rootProject.ext.compileApi
|
|
buildToolsVersion = rootProject.ext.toolsVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.minApi
|
|
targetSdkVersion rootProject.ext.targetApi
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
debug {
|
|
jniDebuggable true
|
|
renderscriptDebuggable true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
implementation 'com.android.support:support-v4:28.0.0'
|
|
implementation 'com.android.support:support-vector-drawable:28.0.0'
|
|
}
|