mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-12 04:25:08 -05:00
17 lines
272 B
Groovy
17 lines
272 B
Groovy
apply plugin: 'android-library'
|
|
|
|
android {
|
|
compileSdkVersion 17
|
|
buildToolsVersion '18.1.1'
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
java.srcDirs = ['src']
|
|
res.srcDirs = ['res']
|
|
}
|
|
}
|
|
}
|
|
|
|
archivesBaseName = 'PullToRefresh'
|