We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f343c7 commit 1e1bcdfCopy full SHA for 1e1bcdf
bootstrap/common/templates/AndroidManifest.tmpl.xml
@@ -86,6 +86,15 @@
86
android:process=":PythonService"/>
87
{% endif %}
88
89
+ {% if args.bootstrap.broadcastreceiver_entrypoint %}
90
+ <receiver android:name="{{ args.bootstrap.broadcastreceiver_entrypoint }}" android:enabled="true" >
91
+ <intent-filter>
92
+ <action android:name ="{{ args.bootstrap.broadcastreceiver_action }}"/>
93
+ <category android:name="android.intent.category.DEFAULT" />
94
+ </intent-filter>
95
+ </receiver>
96
+ {% endif %}
97
+
98
{% if args.billing_pubkey %}
99
<service android:name="org.renpy.android.billing.BillingService"
100
android:process=":python" />
0 commit comments