2013-05-25 16:48:11 -04:00
|
|
|
apply plugin: 'android-library'
|
|
|
|
|
|
|
|
dependencies {
|
2014-01-10 03:09:36 -05:00
|
|
|
compile 'com.android.support:support-v4:19.0.+'
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2013-09-09 07:19:43 -04:00
|
|
|
compileSdkVersion 14
|
|
|
|
buildToolsVersion '17.0.0'
|
2013-05-25 16:48:11 -04:00
|
|
|
|
2013-09-09 07:19:43 -04:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
|
|
java.srcDirs = ['src']
|
|
|
|
res.srcDirs = ['res']
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
2013-09-09 07:19:43 -04:00
|
|
|
}
|
2014-01-16 16:33:11 -05:00
|
|
|
|
|
|
|
// Do not abort build if lint finds errors
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|