Skip to content

Commit 9907c9c

Browse files
SomberNightaccumulator
authored andcommitted
follow-up prev: AndroidManifest.xml change also for qt bootstrap
1 parent 494461c commit 9907c9c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pythonforandroid/bootstraps/qt5/build/templates/AndroidManifest.tmpl.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
android:theme="@style/AppTheme"
7777
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale|uiMode{% if args.min_sdk_version >= 8 %}|uiMode{% endif %}{% if args.min_sdk_version >= 13 %}|screenSize|smallestScreenSize{% endif %}{% if args.min_sdk_version >= 17 %}|layoutDirection{% endif %}{% if args.min_sdk_version >= 24 %}|density{% endif %}"
7878
android:screenOrientation="{{ args.orientation }}"
79+
android:exported="true"
7980
{% if args.activity_launch_mode %}
8081
android:launchMode="{{ args.activity_launch_mode }}"
8182
{% endif %}
@@ -126,7 +127,8 @@
126127
{% if args.launcher %}
127128
<activity android:name="org.kivy.android.launcher.ProjectChooser"
128129
android:icon="@mipmap/icon"
129-
android:label="@string/app_name">
130+
android:label="@string/app_name"
131+
android:exported="true">
130132

131133
<intent-filter>
132134
<action android:name="android.intent.action.MAIN" />
@@ -152,7 +154,8 @@
152154
<service android:name="org.kivy.android.billing.BillingReceiver"
153155
android:process=":pythonbilling" />
154156
<receiver android:name="org.kivy.android.billing.BillingReceiver"
155-
android:process=":pythonbillingreceiver">
157+
android:process=":pythonbillingreceiver"
158+
android:exported="false">
156159
<intent-filter>
157160
<action android:name="com.android.vending.billing.IN_APP_NOTIFY" />
158161
<action android:name="com.android.vending.billing.RESPONSE_CODE" />

0 commit comments

Comments
 (0)