captainepoch / husky

The most famous Pleroma client for Android.
https://husky.adol.pw
GNU General Public License v3.0
34 stars 1 forks source link

Enable allowBackups #16

Open captainepoch opened 6 months ago

captainepoch commented 6 months ago

Description of the feature

Husky disables backups in the manifest. I guess this was done originally in Tusky to prevent private credentials going into Google's backups. But since Husky is no longer in the Play Store anyway, it's basically just Seedvault and similar apps which are being disabled here. That seems undesirable. I want my Seedvault backups to contain Husky and its data.

Quick diff

I didn't build or test this but it should be simple.

diff --git a/husky/app/src/main/AndroidManifest.xml b/husky/app/src/main/AndroidManifest.xml
index 5a4597b..af9a5d5 100644
--- a/husky/app/src/main/AndroidManifest.xml
+++ b/husky/app/src/main/AndroidManifest.xml
@@ -24,7 +24,7 @@

     <application
         android:name=".HuskyApplication"
-        android:allowBackup="false"
+        android:allowBackup="true"
         android:icon="@mipmap/ic_launcher"
         android:label="@string/app_name"
         android:requestLegacyExternalStorage="true"

--

Original issue: https://codeberg.org/husky/husky/issues/140