소스 검색

android: Enable retaining app data after uninstall

Charles Lombardo 3 년 전
부모
커밋
940dbdcff2
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/android/app/src/main/AndroidManifest.xml

+ 2 - 1
src/android/app/src/main/AndroidManifest.xml

@@ -19,7 +19,8 @@
         android:name="org.yuzu.yuzu_emu.YuzuApplication"
         android:label="@string/app_name"
         android:icon="@drawable/ic_launcher"
-        android:allowBackup="false"
+        android:allowBackup="true"
+        android:hasFragileUserData="true"
         android:supportsRtl="true"
         android:isGame="true"
         android:banner="@drawable/ic_launcher"