diff options
| author | 2023-03-22 04:36:00 -0400 | |
|---|---|---|
| committer | 2023-06-03 00:05:45 -0700 | |
| commit | 74653f1e803fc4c75ab1a4893893414d83fb645c (patch) | |
| tree | bc98ee3ed9f64ac603719e78d93b17e51edca2ec /src/android/app | |
| parent | android: Suppress lint in InsetsHelper (diff) | |
| download | yuzu-74653f1e803fc4c75ab1a4893893414d83fb645c.tar.gz yuzu-74653f1e803fc4c75ab1a4893893414d83fb645c.tar.xz yuzu-74653f1e803fc4c75ab1a4893893414d83fb645c.zip | |
android: Refactor ic_launcher.xml to drawables
Diffstat (limited to 'src/android/app')
| -rw-r--r-- | src/android/app/src/main/AndroidManifest.xml | 4 | ||||
| -rw-r--r-- | src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/StartupHandler.kt | 2 | ||||
| -rw-r--r-- | src/android/app/src/main/res/drawable/ic_launcher.xml (renamed from src/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml) | 0 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml index 4164bd96f..79fb902ad 100644 --- a/src/android/app/src/main/AndroidManifest.xml +++ b/src/android/app/src/main/AndroidManifest.xml | |||
| @@ -18,11 +18,11 @@ | |||
| 18 | <application | 18 | <application |
| 19 | android:name="org.yuzu.yuzu_emu.YuzuApplication" | 19 | android:name="org.yuzu.yuzu_emu.YuzuApplication" |
| 20 | android:label="@string/app_name" | 20 | android:label="@string/app_name" |
| 21 | android:icon="@mipmap/ic_launcher" | 21 | android:icon="@drawable/ic_launcher" |
| 22 | android:allowBackup="false" | 22 | android:allowBackup="false" |
| 23 | android:supportsRtl="true" | 23 | android:supportsRtl="true" |
| 24 | android:isGame="true" | 24 | android:isGame="true" |
| 25 | android:banner="@mipmap/ic_launcher" | 25 | android:banner="@drawable/ic_launcher" |
| 26 | android:extractNativeLibs="true" | 26 | android:extractNativeLibs="true" |
| 27 | android:fullBackupContent="@xml/data_extraction_rules" | 27 | android:fullBackupContent="@xml/data_extraction_rules" |
| 28 | android:dataExtractionRules="@xml/data_extraction_rules_api_31"> | 28 | android:dataExtractionRules="@xml/data_extraction_rules_api_31"> |
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/StartupHandler.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/StartupHandler.kt index 9deff6870..e2e56eb06 100644 --- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/StartupHandler.kt +++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/StartupHandler.kt | |||
| @@ -35,7 +35,7 @@ object StartupHandler { | |||
| 35 | val alert = MaterialAlertDialogBuilder(parent) | 35 | val alert = MaterialAlertDialogBuilder(parent) |
| 36 | .setMessage(Html.fromHtml(parent.resources.getString(R.string.app_disclaimer))) | 36 | .setMessage(Html.fromHtml(parent.resources.getString(R.string.app_disclaimer))) |
| 37 | .setTitle(R.string.app_name) | 37 | .setTitle(R.string.app_name) |
| 38 | .setIcon(R.mipmap.ic_launcher) | 38 | .setIcon(R.drawable.ic_launcher) |
| 39 | .setPositiveButton(android.R.string.ok, null) | 39 | .setPositiveButton(android.R.string.ok, null) |
| 40 | .setOnDismissListener { | 40 | .setOnDismissListener { |
| 41 | handleStartupPromptDismiss(parent) | 41 | handleStartupPromptDismiss(parent) |
diff --git a/src/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/src/android/app/src/main/res/drawable/ic_launcher.xml index c060cd86c..c060cd86c 100644 --- a/src/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +++ b/src/android/app/src/main/res/drawable/ic_launcher.xml | |||