Merge pull request #186 from Sonicadvance1/gradle-fix
Fix building the release APK with gradle.
This commit is contained in:
commit
8e45783d54
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue