mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-06 01:25:36 -05:00
15 lines
232 B
Groovy
15 lines
232 B
Groovy
apply plugin: 'android-library'
|
|
|
|
android {
|
|
compileSdkVersion 17
|
|
buildToolsVersion '17'
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
java.srcDirs = ['src']
|
|
res.srcDirs = ['res']
|
|
}
|
|
}
|
|
}
|