summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/app/src/main/AndroidManifest.xml')
-rw-r--r--src/android/app/src/main/AndroidManifest.xml34
1 files changed, 13 insertions, 21 deletions
diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml
index c2463e079..0d7e3f7ad 100644
--- a/src/android/app/src/main/AndroidManifest.xml
+++ b/src/android/app/src/main/AndroidManifest.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.citra.citra_emu">
+ package="org.yuzu.yuzu_emu">
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false"/>
@@ -11,9 +11,6 @@
<uses-feature android:glEsVersion="0x00030002" android:required="true" />
<uses-feature android:name="android.hardware.opengles.aep" android:required="true" />
- <uses-feature
- android:name="android.hardware.camera.any"
- android:required="false" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
@@ -23,7 +20,7 @@
<application
- android:name="org.citra.citra_emu.CitraApplication"
+ android:name="org.yuzu.yuzu_emu.YuzuApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:allowBackup="false"
@@ -33,8 +30,8 @@
android:requestLegacyExternalStorage="true">
<activity
- android:name="org.citra.citra_emu.ui.main.MainActivity"
- android:theme="@style/CitraBase"
+ android:name="org.yuzu.yuzu_emu.ui.main.MainActivity"
+ android:theme="@style/YuzuBase"
android:resizeableActivity="false">
<!-- This intentfilter marks this Activity as the one that gets launched from Home screen. -->
@@ -46,22 +43,22 @@
</activity>
<activity
- android:name="org.citra.citra_emu.features.settings.ui.SettingsActivity"
+ android:name="org.yuzu.yuzu_emu.features.settings.ui.SettingsActivity"
android:configChanges="orientation|screenSize|uiMode"
- android:theme="@style/CitraSettingsBase"
+ android:theme="@style/YuzuSettingsBase"
android:label="@string/preferences_settings"/>
<activity
- android:name="org.citra.citra_emu.activities.EmulationActivity"
+ android:name="org.yuzu.yuzu_emu.activities.EmulationActivity"
android:resizeableActivity="false"
- android:theme="@style/CitraEmulationBase"
+ android:theme="@style/YuzuEmulationBase"
android:launchMode="singleTop"
android:screenOrientation="landscape"/>
- <service android:name="org.citra.citra_emu.utils.ForegroundService"/>
+ <service android:name="org.yuzu.yuzu_emu.utils.ForegroundService"/>
<activity
- android:name="org.citra.citra_emu.activities.CustomFilePickerActivity"
+ android:name="org.yuzu.yuzu_emu.activities.CustomFilePickerActivity"
android:label="@string/app_name"
android:theme="@style/FilePickerTheme">
<intent-filter>
@@ -70,16 +67,10 @@
</intent-filter>
</activity>
- <activity
- android:name="org.citra.citra_emu.features.cheats.ui.CheatsActivity"
- android:exported="false"
- android:theme="@style/CitraSettingsBase"
- android:label="@string/cheats"/>
-
- <service android:name="org.citra.citra_emu.utils.DirectoryInitialization"/>
+ <service android:name="org.yuzu.yuzu_emu.utils.DirectoryInitialization"/>
<provider
- android:name="org.citra.citra_emu.model.GameProvider"
+ android:name="org.yuzu.yuzu_emu.model.GameProvider"
android:authorities="${applicationId}.provider"
android:enabled="true"
android:exported="false">
@@ -97,3 +88,4 @@
</application>
</manifest>
+