mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-07 09:44:59 -05:00
18 lines
347 B
Groovy
18 lines
347 B
Groovy
|
apply plugin: 'android-library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 19
|
||
|
buildToolsVersion "19.0.0"
|
||
|
defaultConfig {
|
||
|
minSdkVersion 7
|
||
|
targetSdkVersion 17
|
||
|
}
|
||
|
sourceSets {
|
||
|
main {
|
||
|
manifest.srcFile 'AndroidManifest.xml'
|
||
|
java.srcDirs = ['src']
|
||
|
res.srcDirs = ['res']
|
||
|
}
|
||
|
}
|
||
|
}
|