12 lines
203 B
Groovy
12 lines
203 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
defaultConfig {
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
}
|