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

26 lines
435 B
Groovy
Raw Normal View History

2013-05-25 23:14:46 +02:00
apply plugin: 'android-library'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
}
android {
compileSdkVersion 17
2013-11-04 22:48:27 +01:00
buildToolsVersion '18.1.1'
2013-05-25 23:14:46 +02:00
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
}
}
2014-02-21 17:38:20 +01:00
// Do not abort build if lint finds errors
lintOptions {
abortOnError false
}
2013-05-25 23:14:46 +02:00
}
archivesBaseName = 'ActionBarSherlock'