diff options
| author | 2023-06-13 19:04:10 -0400 | |
|---|---|---|
| committer | 2023-06-15 22:19:58 -0400 | |
| commit | a29fa119e0b733020e685dcfed4f9abe39d09abb (patch) | |
| tree | b5c6f8ee31c679e2c1ad1e87b203dfa30c4c6f59 /src/android | |
| parent | Merge pull request #10796 from bunnei/fix-saf (diff) | |
| download | yuzu-a29fa119e0b733020e685dcfed4f9abe39d09abb.tar.gz yuzu-a29fa119e0b733020e685dcfed4f9abe39d09abb.tar.xz yuzu-a29fa119e0b733020e685dcfed4f9abe39d09abb.zip | |
android: Enable android linting
Diffstat (limited to 'src/android')
| -rw-r--r-- | src/android/app/build.gradle.kts | 10 | ||||
| -rw-r--r-- | src/android/app/src/main/res/values/strings.xml | 2 |
2 files changed, 1 insertions, 11 deletions
diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index a637db78a..cb5f8b60c 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts | |||
| @@ -44,16 +44,6 @@ android { | |||
| 44 | jniLibs.useLegacyPackaging = true | 44 | jniLibs.useLegacyPackaging = true |
| 45 | } | 45 | } |
| 46 | 46 | ||
| 47 | lint { | ||
| 48 | // This is important as it will run lint but not abort on error | ||
| 49 | // Lint has some overly obnoxious "errors" that should really be warnings | ||
| 50 | abortOnError = false | ||
| 51 | |||
| 52 | //Uncomment disable lines for test builds... | ||
| 53 | //disable 'MissingTranslation'bin | ||
| 54 | //disable 'ExtraTranslation' | ||
| 55 | } | ||
| 56 | |||
| 57 | defaultConfig { | 47 | defaultConfig { |
| 58 | // TODO If this is ever modified, change application_id in strings.xml | 48 | // TODO If this is ever modified, change application_id in strings.xml |
| 59 | applicationId = "org.yuzu.yuzu_emu" | 49 | applicationId = "org.yuzu.yuzu_emu" |
diff --git a/src/android/app/src/main/res/values/strings.xml b/src/android/app/src/main/res/values/strings.xml index b5bc249d4..2f2059d42 100644 --- a/src/android/app/src/main/res/values/strings.xml +++ b/src/android/app/src/main/res/values/strings.xml | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <resources> | 2 | <resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation"> |
| 3 | 3 | ||
| 4 | <!-- General application strings --> | 4 | <!-- General application strings --> |
| 5 | <string name="app_name" translatable="false">yuzu</string> | 5 | <string name="app_name" translatable="false">yuzu</string> |