15 lines
369 B
Groovy
15 lines
369 B
Groovy
apply plugin: "com.android.library"
|
|
apply from: "../../common.gradle"
|
|
|
|
android {
|
|
defaultConfig {
|
|
vectorDrawables.useSupportLibrary false
|
|
vectorDrawables.generatedDensities = null
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
|
}
|