Add A DocumentProvider for access to LOVES external files

This commit is contained in:
Mylah Dee
2022-06-04 13:31:33 -05:00
parent bef1f21705
commit 0a4dffbc6e
2 changed files with 673 additions and 0 deletions
+10
View File
@@ -57,5 +57,15 @@
<data android:mimeType="*/*" />
</intent-filter>
</activity>
<provider
android:name="org.love2d.android.LoveDocumentsProvider"
android:authorities="${applicationId}.documents"
android:exported="true"
android:grantUriPermissions="true"
android:permission="android.permission.MANAGE_DOCUMENTS">
<intent-filter>
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
</intent-filter>
</provider>
</application>
</manifest>