Skip to content

Commit

Permalink
Merge pull request #186 from Sonicadvance1/gradle-fix
Browse files Browse the repository at this point in the history
Fix building the release APK with gradle.
  • Loading branch information
Parlane committed Mar 17, 2014
2 parents 154dee8 + adaf095 commit 8e45783
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Source/Android/build.gradle
Expand Up @@ -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'
Expand Down

0 comments on commit 8e45783

Please sign in to comment.