2013-05-25 16:48:11 -04:00
|
|
|
apply plugin: 'android-library'
|
|
|
|
|
|
|
|
dependencies {
|
2014-01-28 19:49:59 -05:00
|
|
|
compile 'com.android.support:support-v4:19.0.1'
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2013-09-09 07:19:43 -04:00
|
|
|
compileSdkVersion 14
|
2014-01-28 19:49:59 -05:00
|
|
|
buildToolsVersion '19.0.1'
|
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
|
|
|
}
|