diff options
| author | Ryan Houdek <ryan.houdek@codethink.co.uk> | 2014-03-17 16:28:31 -0500 |
|---|---|---|
| committer | Ryan Houdek <ryan.houdek@codethink.co.uk> | 2014-03-17 16:28:31 -0500 |
| commit | adaf095229fda999857343228afd3898cebcf418 (patch) | |
| tree | 0de7e442c5812925dca98f3e15b9693e2b48fe16 /Source/Android | |
| parent | 154dee8c6c4b6655955ef69ba228ba6a6d355ac2 (diff) | |
Fix building the release APK with gradle.
In release build all warnings are errors, and lint has some obnoxious warnings.
Diffstat (limited to 'Source/Android')
| -rw-r--r-- | Source/Android/build.gradle | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/Android/build.gradle b/Source/Android/build.gradle index 9c2fc82e8e..df7aafc266 100644 --- a/Source/Android/build.gradle +++ b/Source/Android/build.gradle @@ -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' |
