blob: 258bee6c0016f1e7ff7b08ac07e64f4a8e2f3479 [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 {
Adam Metcalf634e2132013-06-14 14:50:12 -07005 sourceSets {
6 main {
Justin Morey25e5dbe2014-04-24 10:47:10 -05007 manifest.srcFile 'AndroidManifest.xml'
8 java.srcDirs = ['java']
9 logtags.srcDirs = ['java']
Adam Metcalf634e2132013-06-14 14:50:12 -070010 }
11 }
Justin Morey25e5dbe2014-04-24 10:47:10 -050012
Xavier Ducrohet63d66d12014-01-29 19:01:31 -080013 lintOptions {
14 // TODO: fix errors and reenable.
15 abortOnError false
16 }
Adam Metcalf634e2132013-06-14 14:50:12 -070017}