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