mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-05 11:45:10 +01:00
Reintroduce android:hasFragileUserData
due to stable signature
`android:hasFragileUserData` was added in an earlier commit but then removed due to it not functioning because of signature checks. Now that signatures are consistent across builds, it has been readded and should now allow carrying data across CI and developer builds.
This commit is contained in:
parent
da79e2c8e3
commit
4336134b07
@ -16,6 +16,7 @@
|
|||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:extractNativeLibs="true"
|
android:extractNativeLibs="true"
|
||||||
android:fullBackupContent="@xml/backup_descriptor"
|
android:fullBackupContent="@xml/backup_descriptor"
|
||||||
|
android:hasFragileUserData="true"
|
||||||
android:icon="@drawable/logo_skyline"
|
android:icon="@drawable/logo_skyline"
|
||||||
android:isGame="true"
|
android:isGame="true"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
@ -23,7 +24,7 @@
|
|||||||
android:theme="@style/AppTheme"
|
android:theme="@style/AppTheme"
|
||||||
tools:ignore="GoogleAppIndexingWarning,UnusedAttribute">
|
tools:ignore="GoogleAppIndexingWarning,UnusedAttribute">
|
||||||
|
|
||||||
<profileable android:shell="true"/>
|
<profileable android:shell="true" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="emu.skyline.MainActivity"
|
android:name="emu.skyline.MainActivity"
|
||||||
@ -117,8 +118,8 @@
|
|||||||
<provider
|
<provider
|
||||||
android:name="emu.skyline.provider.DocumentsProvider"
|
android:name="emu.skyline.provider.DocumentsProvider"
|
||||||
android:authorities="emu.skyline.provider"
|
android:authorities="emu.skyline.provider"
|
||||||
android:grantUriPermissions="true"
|
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
|
android:grantUriPermissions="true"
|
||||||
android:permission="android.permission.MANAGE_DOCUMENTS">
|
android:permission="android.permission.MANAGE_DOCUMENTS">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
|
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
|
||||||
|
Loading…
Reference in New Issue
Block a user