2014-02-21 17:38:20 +01:00
|
|
|
// please leave this here, so this library builds on its own
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-12-09 00:41:10 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:1.0.0'
|
2014-02-21 17:38:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-26 18:06:20 +02:00
|
|
|
apply plugin: 'com.android.library'
|
2014-02-21 17:38:20 +01:00
|
|
|
|
|
|
|
android {
|
2014-12-09 00:41:10 +01:00
|
|
|
compileSdkVersion 21
|
2015-01-30 10:28:14 +01:00
|
|
|
buildToolsVersion '21.1.2'
|
2015-01-28 15:11:08 +01:00
|
|
|
|
2014-02-21 17:38:20 +01:00
|
|
|
// Do not abort build if lint finds errors
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
}
|