1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-02-19 20:21:45 -05:00

28 lines
547 B
Groovy
Raw Normal View History

2014-02-21 17:38:20 +01:00
// please leave this here, so this library builds on its own
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
2014-02-21 17:38:20 +01:00
}
}
apply plugin: 'com.android.library'
2014-02-21 17:38:20 +01:00
android {
compileSdkVersion 21
buildToolsVersion '21.1.2'
defaultConfig {
// Turns out a lint check crashes when we don't specify minSdkVersion
minSdkVersion 15
}
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
}
}