~repos /only-bible-app
GIT_CONFIG_PARAMETERS="'http.version=HTTP/1.1'" git clone
https://git.pyrossh.dev/only-bible-app.git
Discussions:
https://groups.google.com/g/rust-embed-devs
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
add backup readme
readme.md
CHANGED
|
@@ -50,3 +50,13 @@ cd android; fastlane upload
|
|
|
50
50
|
flutter build ipa --release --dart-define-from-file=.env
|
|
51
51
|
cd ios; fastlane upload
|
|
52
52
|
```
|
|
53
|
+
|
|
54
|
+
# Data Backup
|
|
55
|
+
|
|
56
|
+
android:allowBackup is not set, which means it defaults to true on Android — so Auto Backup is already enabled. Your app_state.json in the documents directory will be backed up to Google Drive automatically.
|
|
57
|
+
|
|
58
|
+
However, there's one thing worth noting: the <application> tag is missing android:fullBackupContent or android:dataExtractionRules, which means everything in the app's data directory is backed up (including potentially sensitive data). That's fine for this app since it's just preferences and highlights.
|
|
59
|
+
|
|
60
|
+
iOS is also fine — getApplicationDocumentsDirectory() is included in iCloud backups by default with no configuration needed.
|
|
61
|
+
|
|
62
|
+
So both platforms are already covered out of the box. No changes required.
|