8000
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 88f8e90 commit 9a11ee2Copy full SHA for 9a11ee2
pythonforandroid/bootstraps/sdl2/build/templates/AndroidManifest.tmpl.xml
@@ -128,6 +128,18 @@
128
{% for a in args.add_activity %}
129
<activity android:name="{{ a }}"></activity>
130
{% endfor %}
131
+
132
+ {% if args.fileprovider_paths %}
133
+ <provider
134
+ android:name="android.support.v4.content.FileProvider"
135
+ android:authorities="{{ args.package }}.fileprovider"
136
+ android:exported="false"
137
+ android:grantUriPermissions="true">
138
+ <meta-data
139
+ android:name="android.support.FILE_PROVIDER_PATHS"
140
+ android:resource="@xml/file_paths"/>
141
+ </provider>
142
+ {% endif %}
143
</application>
144
145
</manifest>
0 commit comments