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:
PixelyIon 2022-05-31 01:37:07 +05:30
parent da79e2c8e3
commit 4336134b07

View File

@ -16,6 +16,7 @@
android:allowBackup="true"
android:extractNativeLibs="true"
android:fullBackupContent="@xml/backup_descriptor"
android:hasFragileUserData="true"
android:icon="@drawable/logo_skyline"
android:isGame="true"
android:label="@string/app_name"
@ -23,7 +24,7 @@
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning,UnusedAttribute">
<profileable android:shell="true"/>
<profileable android:shell="true" />
<activity
android:name="emu.skyline.MainActivity"
@ -117,8 +118,8 @@
<provider
android:name="emu.skyline.provider.DocumentsProvider"
android:authorities="emu.skyline.provider"
android:grantUriPermissions="true"
android:exported="true"
android:grantUriPermissions="true"
android:permission="android.permission.MANAGE_DOCUMENTS">
<intent-filter>
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />