mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-07 01:35:00 -05:00
21 lines
374 B
Groovy
21 lines
374 B
Groovy
apply plugin: 'android-library'
|
|
|
|
|
|
android {
|
|
compileSdkVersion 17
|
|
buildToolsVersion '19.0.1'
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
java.srcDirs = ['src']
|
|
res.srcDirs = ['res']
|
|
}
|
|
}
|
|
|
|
// Do not abort build if lint finds errors
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|