1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
apply plugin: 'android-library' android { compileSdkVersion 17 buildToolsVersion '19.0.1' sourceSets { main { manifest.srcFile 'AndroidManifest.xml' java.srcDirs = ['src'] res.srcDirs = ['res'] } } // Do not abort build if lint finds errors lintOptions { abortOnError false } }