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