Commit 2f591fb0a0f1dbe1d4a0e6477df89c694e9f60f4

Sam Lantinga 2021-11-15T12:50:02

Added android:exported="true" to the example Android manifest This is needed for targeting Android 12 (API 31)

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/android-project/app/src/main/AndroidManifest.xml b/android-project/app/src/main/AndroidManifest.xml
index ce1c8a9..8572531 100644
--- a/android-project/app/src/main/AndroidManifest.xml
+++ b/android-project/app/src/main/AndroidManifest.xml
@@ -72,6 +72,7 @@
             android:launchMode="singleInstance"
             android:configChanges="layoutDirection|locale|orientation|uiMode|screenLayout|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation"
             android:preferMinimalPostProcessing="true"
+            android:exported="true"
             >
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />