mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-06 03:40:12 +00:00
Fix building the release APK with gradle.
In release build all warnings are errors, and lint has some obnoxious warnings.
This commit is contained in:
parent
154dee8c6c
commit
adaf095229
@ -29,6 +29,12 @@ android {
|
|||||||
compileTask -> compileTask.dependsOn(nativeLibsToJar)
|
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 {
|
sourceSets {
|
||||||
main {
|
main {
|
||||||
manifest.srcFile 'AndroidManifest.xml'
|
manifest.srcFile 'AndroidManifest.xml'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user