diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index 31d8abc649..2ae4d17046 100644 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -55,8 +55,8 @@ android:name=".PpssppActivity" android:configChanges="locale|keyboard|keyboardHidden|navigation|uiMode" android:label="@string/app_name" - android:theme="@style/ppsspp_style"> - + android:theme="@style/ppsspp_style" + android:exported="true"> @@ -106,7 +106,8 @@ + android:label="@string/shortcut_name" + android:exported="true"> diff --git a/android/build.gradle b/android/build.gradle index 67bb3291c5..7703fd4076 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -44,7 +44,7 @@ android { } } } - compileSdkVersion 30 + compileSdkVersion 31 defaultConfig { applicationId 'org.ppsspp.ppsspp' if (androidGitVersion.name() != "unknown" && androidGitVersion.code() >= 14000000) { @@ -60,7 +60,7 @@ android { new File("versioncode.txt").write(androidGitVersion.code().toString()) minSdkVersion 9 - targetSdkVersion 30 + targetSdkVersion 31 if (project.hasProperty("ANDROID_VERSION_CODE") && project.hasProperty("ANDROID_VERSION_NAME")) { versionCode ANDROID_VERSION_CODE versionName ANDROID_VERSION_NAME