18 lines
334 B
Groovy
18 lines
334 B
Groovy
![]() |
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 22
|
||
|
buildToolsVersion '23.0.0'
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 8
|
||
|
targetSdkVersion 22
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
}
|
||
|
|
||
|
// Do not abort build if lint finds errors
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
|
}
|