2015-08-26 22:12:16 +02:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2016-02-25 18:01:03 +03:00
|
|
|
compileSdkVersion 23
|
2015-11-05 11:59:05 +01:00
|
|
|
buildToolsVersion '23.0.2'
|
2015-08-26 22:12:16 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 8
|
2016-02-25 18:01:03 +03:00
|
|
|
targetSdkVersion 23
|
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
|
|
|
}
|