diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-03-06 07:35:30 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:05:33 +0200 |
commit | 9507e99165c47a49d09a7f07d431b4141483585c (patch) | |
tree | a22d830c7c68ea301be11fcb421fd2de7b4e4665 | |
parent | android: bump compile/target sdk to 33 (diff) | |
download | yuzu-9507e99165c47a49d09a7f07d431b4141483585c.tar yuzu-9507e99165c47a49d09a7f07d431b4141483585c.tar.gz yuzu-9507e99165c47a49d09a7f07d431b4141483585c.tar.bz2 yuzu-9507e99165c47a49d09a7f07d431b4141483585c.tar.lz yuzu-9507e99165c47a49d09a7f07d431b4141483585c.tar.xz yuzu-9507e99165c47a49d09a7f07d431b4141483585c.tar.zst yuzu-9507e99165c47a49d09a7f07d431b4141483585c.zip |
-rw-r--r-- | src/android/app/build.gradle | 2 | ||||
-rw-r--r-- | src/android/app/src/main/AndroidManifest.xml | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/android/app/build.gradle b/src/android/app/build.gradle index 1f16dcbed..505c8f25d 100644 --- a/src/android/app/build.gradle +++ b/src/android/app/build.gradle @@ -10,6 +10,8 @@ def buildType def abiFilter = "arm64-v8a" //, "x86" android { + namespace 'org.yuzu.yuzu_emu' + compileSdkVersion 33 ndkVersion "25.2.9519653" diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml index de4dbb948..73ed981c1 100644 --- a/src/android/app/src/main/AndroidManifest.xml +++ b/src/android/app/src/main/AndroidManifest.xml @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="org.yuzu.yuzu_emu"> +<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <uses-feature android:name="android.hardware.touchscreen" android:required="false"/> |