blob: f0d9f7a57804a9e66fd2705d9adab4d5ff0983b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
apply plugin: "com.android.library"
apply from: "../../common.gradle"
android {
defaultConfig {
vectorDrawables.useSupportLibrary false
vectorDrawables.generatedDensities = ["xhdpi"]
}
}
dependencies {
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
}
|