blob: fa1388c65aeab724169bbe497932b632888f05cd [file] [log] [blame]
Adam Metcalf634e2132013-06-14 14:50:12 -07001apply plugin: 'android-library'
Justin Morey25e5dbe2014-04-24 10:47:10 -05002apply plugin: 'logtags'
Adam Metcalf634e2132013-06-14 14:50:12 -07003
Adam Metcalf634e2132013-06-14 14:50:12 -07004android {
Justin Morey25e5dbe2014-04-24 10:47:10 -05005 compileSdkVersion 19
Xavier Ducrohet98c691d2014-01-23 12:01:46 -08006 buildToolsVersion = '19.0.1'
Adam Metcalf634e2132013-06-14 14:50:12 -07007
Adam Metcalf634e2132013-06-14 14:50:12 -07008 sourceSets {
9 main {
Justin Morey25e5dbe2014-04-24 10:47:10 -050010 manifest.srcFile 'AndroidManifest.xml'
11 java.srcDirs = ['java']
12 logtags.srcDirs = ['java']
Adam Metcalf634e2132013-06-14 14:50:12 -070013 }
14 }
Justin Morey25e5dbe2014-04-24 10:47:10 -050015
Xavier Ducrohet63d66d12014-01-29 19:01:31 -080016 lintOptions {
17 // TODO: fix errors and reenable.
18 abortOnError false
19 }
Adam Metcalf634e2132013-06-14 14:50:12 -070020}