2014-02-21 11:38:20 -05:00
|
|
|
// please leave this here, so this library builds on its own
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-12-08 18:41:10 -05:00
|
|
|
classpath 'com.android.tools.build:gradle:1.0.0'
|
2014-02-21 11:38:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-26 12:06:20 -04:00
|
|
|
apply plugin: 'com.android.library'
|
2014-02-21 11:38:20 -05:00
|
|
|
|
|
|
|
android {
|
2014-12-08 18:41:10 -05:00
|
|
|
compileSdkVersion 21
|
2015-01-30 04:28:14 -05:00
|
|
|
buildToolsVersion '21.1.2'
|
2015-03-16 13:07:58 -04:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
// Turns out a lint check crashes when we don't specify minSdkVersion
|
|
|
|
minSdkVersion 15
|
|
|
|
}
|
2015-01-28 09:11:08 -05:00
|
|
|
|
2014-02-21 11:38:20 -05:00
|
|
|
// Do not abort build if lint finds errors
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
}
|