android: Mark the activity as exported

This is a requirement in newer API levels.
This commit is contained in:
Sebastian Krzyszkowiak 2024-03-04 22:53:14 +01:00
parent cb010d9e84
commit df06ff2773
No known key found for this signature in database
GPG key ID: E8F235CF3BDBC3FF

View file

@ -9,6 +9,7 @@
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" android:resizeable="true" />
<application android:label="@string/app_name" android:icon="@mipmap/${LIBSUPERDERPY_GAMENAME}">
<activity android:name="net.dosowisko.libsuperderpy.Activity"
android:exported="true"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="${LIBSUPERDERPY_ANDROID_ORIENTATION}"