1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-02-19 20:21:45 -05:00

22 lines
409 B
Groovy
Raw Normal View History

apply plugin: 'com.android.library'
2013-05-25 23:14:46 +02:00
android {
compileSdkVersion 21
buildToolsVersion '21.1.2'
2013-05-25 23:14:46 +02:00
2014-09-18 15:18:41 +02:00
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
}
}
// Do not abort build if lint finds errors
lintOptions {
abortOnError false
2013-05-25 23:14:46 +02:00
}
}
archivesBaseName = 'PullToRefresh'