Browse Source

android: Enable android linting

nce_cpp
Charles Lombardo 3 years ago
parent
commit
1ad4a05d64
  1. 10
      src/android/app/build.gradle.kts
  2. 2
      src/android/app/src/main/res/values/strings.xml

10
src/android/app/build.gradle.kts

@ -44,16 +44,6 @@ android {
jniLibs.useLegacyPackaging = true
}
lint {
// 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
//Uncomment disable lines for test builds...
//disable 'MissingTranslation'bin
//disable 'ExtraTranslation'
}
defaultConfig {
// TODO If this is ever modified, change application_id in strings.xml
applicationId = "org.yuzu.yuzu_emu"

2
src/android/app/src/main/res/values/strings.xml

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
<!-- General application strings -->
<string name="app_name" translatable="false">yuzu</string>

Loading…
Cancel
Save