mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-07 01:35:00 -05:00
22 lines
434 B
Groovy
22 lines
434 B
Groovy
|
apply plugin: 'android-library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 19
|
||
|
buildToolsVersion '19.0.1'
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 4
|
||
|
}
|
||
|
sourceSets {
|
||
|
main {
|
||
|
manifest.srcFile 'AndroidManifest.xml'
|
||
|
java.srcDirs = ['src']
|
||
|
res.srcDirs = ['res']
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (project.hasProperty('nexusUsername')) {
|
||
|
// Used to push in maven
|
||
|
apply from: '../maven_push.gradle'
|
||
|
}
|