You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
305 B
16 lines
305 B
11 years ago
|
apply plugin: 'android-library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 18
|
||
|
buildToolsVersion '17.0.0'
|
||
|
|
||
|
sourceSets {
|
||
|
main {
|
||
|
manifest.srcFile 'AndroidManifest.xml'
|
||
|
java.srcDirs = ['src']
|
||
|
res.srcDirs = ['res']
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply from: '../maven_push.gradle'
|