mirror of
https://github.com/love2d/love-android.git
synced 2026-08-17 19:24:07 +02:00
Only enable documentsprovider on non-fused build for now.
This commit is contained in:
@@ -57,15 +57,5 @@
|
|||||||
<data android:mimeType="*/*" />
|
<data android:mimeType="*/*" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</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>
|
</application>
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|||||||
@@ -32,6 +32,16 @@
|
|||||||
android:exported="false"
|
android:exported="false"
|
||||||
android:parentActivityName=".MainActivity"
|
android:parentActivityName=".MainActivity"
|
||||||
android:theme="@style/Theme.AppCompat.DayNight" />
|
android:theme="@style/Theme.AppCompat.DayNight" />
|
||||||
|
<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>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
Reference in New Issue
Block a user