2015-08-26 22:12:16 +02:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2016-07-10 01:00:04 +01:00
|
|
|
compileSdkVersion 24
|
2016-07-31 18:40:06 +02:00
|
|
|
buildToolsVersion '24.0.1'
|
2015-08-26 22:12:16 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 8
|
2016-07-10 01:00:04 +01:00
|
|
|
targetSdkVersion 24
|
2015-08-26 22:12:16 +02:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not abort build if lint finds errors
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2015-09-09 21:23:01 -07:00
|
|
|
}
|