12 lines
258 B
Groovy
12 lines
258 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
dependencies {
|
|
api fileTree(dir: 'libs', exclude: 'android-support-*.jar', include: '*.jar')
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
consumerProguardFiles 'proguard-library.txt'
|
|
}
|
|
buildToolsVersion '27.0.3'
|
|
} |