Merge pull request #186 from Sonicadvance1/gradle-fix

Fix building the release APK with gradle.
This commit is contained in:
Matthew Parlane 2014-03-18 11:08:44 +13:00
commit 8e45783d54
1 changed files with 6 additions and 0 deletions

View File

@ -29,6 +29,12 @@ android {
compileTask -> compileTask.dependsOn(nativeLibsToJar)
}
lintOptions {
// This is important as it will run lint but not abort on error
// Lint has some overly obnoxious "errors" that should really be warnings
abortOnError false
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'