mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
26 lines
435 B
Groovy
26 lines
435 B
Groovy
apply plugin: 'android-library'
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: '*.jar')
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 17
|
|
buildToolsVersion '18.1.1'
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
java.srcDirs = ['src']
|
|
res.srcDirs = ['res']
|
|
}
|
|
}
|
|
|
|
// Do not abort build if lint finds errors
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
archivesBaseName = 'ActionBarSherlock'
|