Can anybody tell me how I can give GoodSync the permissions it needs?
Alan Peeling wrote:
Can anybody tell me how I can give GoodSync the permissions it needs?
I don't have goodsync but adb will do everything you ever needed to do.
adb shell appops get com.goodsync.android MANAGE_EXTERNAL_STORAGE
You should see something like one of these outputs
MANAGE_EXTERNAL_STORAGE: allow
MANAGE_EXTERNAL_STORAGE: deny
If you want to see every app with that permission, run this
adb shell appops query-op MANAGE_EXTERNAL_STORAGE
As we discussed about Internet access with Andy, Android won't let you
grant MANAGE_EXTERNAL_STORAGE unless the app declares it in its manifest.
If it's in the manifest, this should work:
adb shell appops set com.goodsync.android MANAGE_EXTERNAL_STORAGE allow
Using Muntashirakon, you will be able to find it if it's in the manifest.
Hello,
I'm trying to run the GoodSync server app on a Samsung Galaxy A16
Android version 16 One UI version 8.0 phone. GoodSync Support want me to check check that GoodSync Server on the phone has all available file/ storage permissions enabled. They write:
/i Android, open Settings > Apps > Special app access > All files access
and make sure GoodSync Server is allowed there. You can also check
Settings > Apps > GoodSync Server > Permissions for any additional file/ storage permissions. The exact menu names can vary depending on Android version and phone manufacturer/i
My problem is that none of these settings or anything like them exist on
my phone. Searching on words like file, settings, storage, permissions, access all bring up nothing relevant.
Can anybody tell me how I can give GoodSync the permissions it needs?
On 2026-06-02 15:59, Alan Peeling wrote:
Hello,
I'm trying to run the GoodSync server app on a Samsung Galaxy A16
Android version 16 One UI version 8.0 phone. GoodSync Support want me
to check check that GoodSync Server on the phone has all available
file/ storage permissions enabled. They write:
/i Android, open Settings > Apps > Special app access > All files
access and make sure GoodSync Server is allowed there. You can also
check Settings > Apps > GoodSync Server > Permissions for any
additional file/ storage permissions. The exact menu names can vary
depending on Android version and phone manufacturer/i
My problem is that none of these settings or anything like them exist
on my phone. Searching on words like file, settings, storage,
permissions, access all bring up nothing relevant.
I have, on my tablet (in Spanish):
main cog wheel (aka settings). -> Apps -> Special apps access -> all
files access -> a list of apps appears.
Android 16.
On my Android 13 phone, that menu "Special apps access" does not exist.
But going down the list, there is an entry with a similar wording.
Can anybody tell me how I can give GoodSync the permissions it needs?
All files accessâ has been replaced by âmain cog wheel (akasettings). -> Apps -> 3 dots menu -> Special access -> All files
Unfortunately again I don't have a clue what the error messages mean.
Alan Peeling wrote:App Manager reveals that the package name is com.siber.gsserver .
Unfortunately again I don't have a clue what the error messages mean.
This is a common error:
No UID for com.goodsync.android,
The error can only mean one of two things, and likely only the first:
a. Either I guessed at the package name wrongly (almost certainly)
b. Or you have other user accounts on your device (not likely)
It's almost certainly that I didn't guess correctly on the package name.
Muntashirakon App Manager will also find the correct package name for you.
<https://github.com/MuntashirAkon/AppManager>
You can also use adb to find the package name if you're willing to grep:
adb shell pm list packages | findstr /i goodsync
However, if it's the fact that it's installed in another profile, try this:
adb shell pm list packages --user all | findstr /i goodsync
Once you have the correct package name, you can try to set permissions.
adb shell appops set com.siber.gsserver MANAGE_EXTERNAL_STORAGE allow
If it showed up under a different user (e.g., user 150) use this:
adb shell appops set --user 150 com.siber.gsserver MANAGE_EXTERNAL_STORAGE allow
Let us know how it works out as this is a general process for all apps.
Let us know how it works out as this is a general process for all apps.App Manager reveals that the package name is com.siber.gsserver .
The goalposts have moved. Everybody now agrees that GoodSync has all the file access permissions that Android can grant it. However GoodSync
Support state the following:
_errors occur when GoodSync tries to read certain folders... On modern Android, those app-private folders may still be protected by the OS even when All files access is granted... Because of Android OS restrictions, access to those folders is not available to GoodSync_
The question now is not how to grant file access through Android's
updated user interface, but is it possible to remove this extra layer of file protection using adb?
Alan Peeling wrote:
Let us know how it works out as this is a general process for all apps.App Manager reveals that the package name is com.siber.gsserver .
The goalposts have moved. Everybody now agrees that GoodSync has all the
file access permissions that Android can grant it. However GoodSync
Support state the following:
_errors occur when GoodSync tries to read certain folders... On modern
Android, those app-private folders may still be protected by the OS even
when All files access is granted... Because of Android OS restrictions,
access to those folders is not available to GoodSync_
The question now is not how to grant file access through Android's
updated user interface, but is it possible to remove this extra layer of
file protection using adb?
Thanks for letting us know the package name and the particulars, as I had guessed wrongly on the original package name so I apologize for that error.
The problem seems to be, from what you've found out, that later Android versions won't allow the Goodsync package access to protected folders.
This is an intentional, hardĂąâŹâenforced security boundary in the OS.
<https://developer.android.com/training/data-storage/manage-all-files>
The restriction is enforced by the OS, not by permissions you can toggle.
I looked up whether Shizuku would help, since it runs a privileged service. But even Shizuku can't turn a normal app into a privileged system app.
I'm just guessing, but you might be able to access other apps' storage
areas from those other apps (note the distinction) using this tool.
<https://f-droid.org/packages/name.lmj001.savetodevice>
<https://f-droid.org/repo/name.lmj001.savetodevice_5.apk>
Name: name.lmj001.savetodevice_5.apk
Size: 3567038 bytes (3483 KiB)
SHA256: 9B7B5BAC62DEEF56F04C3877F7B705F7545C1C67B527C6357B05F2FE848BDD6E
It does amazing things for me, e.g., I can download any free package on the google repository without installing it & without a mothership account.
<https://xdaforums.com/t/tutorial-how-to-use-adb-scrcpy-save-on-device-aurora-store-to-archive-google-play-apk-bundles-without-needing-a-google-account-all-from-your-pc.4789145/>
Note that most people would say that's impossible, and yet, I do it.
Maybe you can use it to save the stuff you want to save, but this won't
use Goodsync directly. It will use each app directly & then use Goodsync.
It's a long shot, but you might come up with a flow that works for you.
Thanks for letting us know the package name and the particulars, as I had guessed wrongly on the original package name so I apologize for that error.
I think you can be forgiven for that, thanks for your help, I think the
end is in sight.
I'm grateful for the reference to Android file management, the nub is
Write access to all internal storage directoriesâ except
/Android/data/, /sdcard/Android, and most subdirectories of
/sdcard/Android. Distressingly, it doesn't document a workaround.
I'm a bit bewildered. I went to <https://f-droid.org/packages/name.lmj001.savetodevice> and installed
Save. It appears not to be a stand-alone app but an adjunct to something called Android Sharesheet, which supports apps' sending data to one
another.
Save is concerned with saving files on an Android device. I
have no need for chatter between apps or for the saving of files on
phones. Is the idea to use Save to access files from the Android storage
and save them somewhere else? That would be an ad-hoc backup strategy lacking the excellent and desirable synchronisation capabilities of GoodSync, so I don't think I would go for it.
âIt will use each app directly & then use Goodsync.â I don't follow this, is the idea that we would visit each app on the phone and copy its private files, then somehow pass them over to GoodSync?
To recap: I am trying to back up a phone but the OS wonât let the backup app have access to all the files that need to be copied to a safe
location. I want some way to give GoodSync permission to work with the forbidden files, or some way to configure the OS so it removes its protection from the currently-inaccessible files. It now seems that I am
out of luck.
Samsung Smart Switch for Windows seems to back up every file on an
Android phone, albeit in a crass fashion, does anybody know how it does
it? Could it use what Maria Sophia calls âa privileged system appâ?
To recap: I am trying to back up a phone but the OS wonât let the backup app have access to all the files that need to be copied to a safe
location. I want some way to give GoodSync permission to work with the forbidden files, or some way to configure the OS so it removes its protection from the currently-inaccessible files. It now seems that I am
out of luck.
I am able to save most files to a computer, by using MTP protocol in
Linux. Sometimes I had success by using an FTP server on the phone.
Alan Peeling wrote:
I think you can be forgiven for that, thanks for your help, I think the
end is in sight.
I'm grateful for the reference to Android file management, the nub is
Write access to all internal storage directoriesù except
/Android/data/, /sdcard/Android, and most subdirectories of
/sdcard/Android. Distressingly, it doesn't document a workaround.
What you're fighting is Google made it very hard, and maybe impossible, in the recent Android versions, for any app that isn't a system app, to access the data of another app.
There are some tricks using Shizuku, but if you're unrooted, as I am,
Google designed it to be almost impossible, if not impossible.
One way I get around the limitation is the savetodevice trick, but I have only used it for saving APKs off of the Google Play Store repository so
far.
1. I download the APK off the Google Play Store repository using one app
2. But while I'm in that app, I use savetodevice to put it somewhere else
What savetodevice lets you do is save anything somewhere else.
But the limitation is you have to be in the app that has the data.
Once you save it to somewhere else though, then any app can access it.
It's a trick I only recently found out about from the Aurora developers.
I'm a bit bewildered. I went to
<https://f-droid.org/packages/name.lmj001.savetodevice> and installed
Save. It appears not to be a stand-alone app but an adjunct to something
called Android Sharesheet, which supports apps' sending data to one
another.
Take a look at this screenshot I made while using the saveondevice app.
<https://i.postimg.cc/SNZzqCQV/saveondevice.jpg>
If you're in any given app, you can save its "stuff" anywhere you like.
For example, let's say you're in a text editor which only saves its files
to its own storage, which no other app has any access to nowadays.
With this app, you can save that text file anywhere on your device.
Once you've saved that text file, any editor can edit it.
The point is that it's a trick to get data out of any given app.
The problem is you have to save the data manually from every app.
So I would only do it when I needed it (which, in my case, is when I use Aurora to download the APK off of the Google Play repository, I use this savetodevice app to save that APK so that I can access it outside of the Aurora app.
Let's say I had a special database in a special app that I wanted another
app to access. I'd use saveondevice to save it OUTSIDE the app so that any other app could access it.
Save is concerned with saving files on an Android device. I
have no need for chatter between apps or for the saving of files on
phones. Is the idea to use Save to access files from the Android storage
and save them somewhere else? That would be an ad-hoc backup strategy
lacking the excellent and desirable synchronisation capabilities of
GoodSync, so I don't think I would go for it.
I think you understand it. It would only be useful for the most important things that you have, since it's a manual save-as operation as I see it.
ĂąâŹĆIt will use each app directly & then use Goodsync.ĂąâŹÂ I don't follow
this, is the idea that we would visit each app on the phone and copy its
private files, then somehow pass them over to GoodSync?
Once you've saved their data to non-privileged storage, then GoodSync can access that data. But as you already noticed, you have to do it for every app. That works for me because I only need to save APKs from Aurora.
But it may be too much effort for what you want to do.
To recap: I am trying to back up a phone but the OS wonĂąâŹâąt let the backup
app have access to all the files that need to be copied to a safe
location. I want some way to give GoodSync permission to work with the
forbidden files, or some way to configure the OS so it removes its
protection from the currently-inaccessible files. It now seems that I am
out of luck.
Yup. If you root, it would be different. Thank Google for this.
Samsung Smart Switch for Windows seems to back up every file on an
Android phone, albeit in a crass fashion, does anybody know how it does
it? Could it use what Maria Sophia calls ĂąâŹËa privileged system appĂąâŹâą?
I never used Samsung Smart Switch, but others might be able to help.
On 04/06/2026 07:20, Carlos E.R. wrote:
I am able to save most files to a computer, by using MTP protocol in
Linux. Sometimes I had success by using an FTP server on the phone.
Are you able to save /Android/data/, /sdcard/Android, and most subdirectories of /sdcard/Android?
Are you able to save /Android/data/, /sdcard/Android, and most
subdirectories of /sdcard/Android?
With FTP I have /Android/data/. I don't have an /sdcard/ directory on
this phone.
So the latest directory was made with a method that accessed more files.
I don't remember what method I used :-?
I will have to run tests again. I have a note that says to use FTP, but
must be a different than the one used in the first directory.
net use Z: \\102.168.1.2@8000\DavWWWRoot /USER:joe * /PERSISTENT:YES<https://i.postimg.cc/gcKXV6F7/webdav16.jpg> A third free WebDAV server
On 2026-06-04 22:52, Alan Peeling wrote:
On 04/06/2026 07:20, Carlos E.R. wrote:
I am able to save most files to a computer, by using MTP protocol in
Linux. Sometimes I had success by using an FTP server on the phone.
Are you able to save /Android/data/, /sdcard/Android, and most
subdirectories of /sdcard/Android?
With FTP I have /Android/data/. I don't have an /sdcard/ directory on
this phone.
With mtpfs I also have "/Android/data/", but I had to run the copy
several times till no errors were reported.
There is a thread here where we commented about it.
Re: How do nonroot Android & nonjailbroken iOS run SMB servers to
connect to each other & Windows?
From: Herbert Kleebauer <...>
Date: Thu, 24 Apr 2025 21:31:44 +0200
But the copies I made are dated July.
/2025-07-18-ftp                                            â 23331M
/2025-07-18-mtpfs                                          â 56257M
/2025-07-18-test                                           â 56170M
So the latest directory was made with a method that accessed more files.
I don't remember what method I used :-?
I will have to run tests again. I have a note that says to use FTP, but
must be a different than the one used in the first directory.
My notes on the ftp method say:
+++------------
Use Cx File Explorer on phone to activate ftp. The app can be
backgrounded, swipe from the bottom.
Copy over the files using mc to temporary directory. No, use FileZilla
Finally, use rsync to save space.
------------++-
Sigh, incomplete notes.
Thatïżœs Interesting. My stash of this newsgroup's posts doesn't go back
as far as 2025. With the aid of ChatGPT I did tinker about with
FileZilla and adb but we were defeated by Androidïżœs file protection
regime. I give up.
On 2026-06-04 22:52, Alan Peeling wrote:
On 04/06/2026 07:20, Carlos E.R. wrote:With FTP I have /Android/data/. I don't have an /sdcard/ directory on
I am able to save most files to a computer, by using MTP protocol in
Linux. Sometimes I had success by using an FTP server on the phone.
Are you able to save /Android/data/, /sdcard/Android, and most
subdirectories of /sdcard/Android?
this phone.
With mtpfs I also have "/Android/data/", but I had to run the copy
several times till no errors were reported.
[snip to end]--
So where does, for example, my email client K9 (com.fsck.k9) hold its
data, in case I wanted to copy it?
Alan Peeling wrote:
ThatÂąs Interesting. My stash of this newsgroup's posts doesn't go back
as far as 2025. With the aid of ChatGPT I did tinker about with
FileZilla and adb but we were defeated by AndroidÂąs file protection
regime. I give up.
https://groups.google.com/g/comp.mobile.android https://newsgrouper.org/comp.mobile.android
https://groups.google.com/g/comp.mobile.android
https://newsgrouper.org/comp.mobile.android
Alan Peeling wrote:
ThatÂąs Interesting. My stash of this newsgroup's posts doesn't go back
as far as 2025. With the aid of ChatGPT I did tinker about with
FileZilla and adb but we were defeated by AndroidÂąs file protection
regime. I give up.
https://groups.google.com/g/comp.mobile.android https://newsgrouper.org/comp.mobile.android
https://newsgrouper.org/comp.mobile.android
https://groups.google.com/g/comp.mobile.android
https://newsgrouper.org/comp.mobile.android
https://newsgrouper.org/comp.mobile.android
Weyhey, made the search thing work!
If you have the message id, then there's another way.
<https://newsgrouper.org/> (test this out)
<https://tinyurl.com/message-id>
<http://al.howardknight.net/>
<http://news.chmurka.net/mid.php>There's a new one <https://usenet.id>
<http://usenet.ovh/index.php?article=ual>
<https://www.novabbs.com/SEARCH/search_nocem.php>
On 2026-06-04 22:52, Alan Peeling wrote:
On 04/06/2026 07:20, Carlos E.R. wrote:
I am able to save most files to a computer, by using MTP protocol in
Linux. Sometimes I had success by using an FTP server on the phone.
Are you able to save /Android/data/, /sdcard/Android, and most
subdirectories of /sdcard/Android?
With FTP I have /Android/data/. I don't have an /sdcard/ directory on
this phone.
With mtpfs I also have "/Android/data/", but I had to run the copy
several times till no errors were reported.
There is a thread here where we commented about it.
Re: How do nonroot Android & nonjailbroken iOS run SMB servers to
connect to each other & Windows?
From: Herbert Kleebauer <...>
Date: Thu, 24 Apr 2025 21:31:44 +0200
But the copies I made are dated July.
/2025-07-18-ftp                                            â 23331M
/2025-07-18-mtpfs                                          â 56257M
/2025-07-18-test                                           â 56170M
So the latest directory was made with a method that accessed more files.
I don't remember what method I used :-?
I will have to run tests again. I have a note that says to use FTP, but
must be a different than the one used in the first directory.
My notes on the ftp method say:
+++------------
Use Cx File Explorer on phone to activate ftp. The app can be
backgrounded, swipe from the bottom.
Copy over the files using mc to temporary directory. No, use FileZilla
Finally, use rsync to save space.
------------++-
Sigh, incomplete notes.
On 05/06/2026 12:33, Carlos E.R. wrote:
On 2026-06-04 22:52, Alan Peeling wrote:I found the thread âHow do nonroot Android & nonjailbroken iOS run SMB servers to connect to each other & Windows?â on https://newsgrouper.org/ comp.mobile.android , thanks for the pointers. It is a killer thread, it took me hours to read, and it's stuffed with the sort of flames that
On 04/06/2026 07:20, Carlos E.R. wrote:
I am able to save most files to a computer, by using MTP protocol in
Linux. Sometimes I had success by using an FTP server on the phone.
Are you able to save /Android/data/, /sdcard/Android, and most
subdirectories of /sdcard/Android?
With FTP I have /Android/data/. I don't have an /sdcard/ directory on
this phone.
With mtpfs I also have "/Android/data/", but I had to run the copy
several times till no errors were reported.
There is a thread here where we commented about it.
Re: How do nonroot Android & nonjailbroken iOS run SMB servers to
connect to each other & Windows?
From: Herbert Kleebauer <...>
Date: Thu, 24 Apr 2025 21:31:44 +0200
But the copies I made are dated July.
/2025-07-18-ftp                                            â 23331M
/2025-07-18-mtpfs                                          â 56257M
/2025-07-18-test                                           â 56170M
So the latest directory was made with a method that accessed more
files. I don't remember what method I used :-?
I will have to run tests again. I have a note that says to use FTP,
but must be a different than the one used in the first directory.
My notes on the ftp method say:
+++------------
Use Cx File Explorer on phone to activate ftp. The app can be
backgrounded, swipe from the bottom.
Copy over the files using mc to temporary directory. No, use FileZilla
Finally, use rsync to save space.
------------++-
Sigh, incomplete notes.
make one embarrassed to be human.
It did contain some gems, for example
I didn't know that Windows File Explorer could be used as an FTP client.
The app Carlos remembered seems to be WebDAV FS, which lets the phone
appear as a drive in File Explorer. That seemed like useful
functionality so I installed it. I know File Explorer already has
something similar but I've found it to be flaky and confusing; I can
never tell whether I'm working in the phone or in a copy of it on my C: drive. I wasn't optimistic that WebDAV FS would solve the problem of inaccessible Android folders. I was right not to be optimistic, when I backed up through it I recovered fewer files than GoodSync Server
fetched, so in that respect it's a turkey. There was a tantalising post suggesting that the Android FTP server primitive ftpd, not in a
sanitised version available though Play Store, but in a more resourceful form that comes from F-Droid, could access off-limits Android folders. I tried it and it doesnât work.
Perhaps the way to back up my phone is to use Samsung Smart Switch after major structural changes to its software and GoodSync Server for day-to-
day maintenance.
Whilst I was exploring I came across the news that, in a few weeks,
Google plans to block Android apps that it has not approved in a bureaucratic and money consuming process. Everyone else may already know about this but I didnât. There is a site at https://keepandroidopen.org/
 giving details and showing links that can be used for asking
regulatory bodies to oppose this nastiness.
I found the thread ïżœHow do nonroot Android & nonjailbroken iOS run SMB servers to connect to each other & Windows?ïżœ on https://newsgrouper.org/comp.mobile.android , thanks for the pointers.
There's a new one <https://usenet.id>
The thing is, only two things are of interest to me in the backup: photos/videos, and WhatsApp. The rest, I can just reinstall. Ok, SMSs too.
Carlos E.R. wrote:
The thing is, only two things are of interest to me in the backup:
photos/videos, and WhatsApp. The rest, I can just reinstall. Ok, SMSs too.
Carlos brings up a good point that backup, for Android, only needs a few things, most of which, I think, most people, I think, get from Google.
We covered Whatsapp backup about a year or so ago, but as I recall, it can
be done but it's easier to do it the official way as encryption is a bitch.
SMS/MMS messages might be easy to back up or not, I'm not sure how to do
it. I know my Pulsesms has a backup mechanism, but it requires an account.
<https://home.pulsesms.app/overview/>
Photos/Videos are relatively easy to backup, of course.
For me, the homescreen is trivial to back up, but I use the Nova launcher.
<https://tinyurl.com/nova-launcher>
There may be an easy way to set up your homescreen and then flip
temporarily to Nova Launcher, and then back it up & then flip back.
Otherwise, I'm not sure how people back up their home screen nowadays.
Does anyone know if any other launcher will back up their home screen?
Then there are the apps, and the app data.
IMHO, I back up the app even before I install it, so that's really the best way, in my opinion, which is to download the APK, and install from that.
It takes knowledge though, which most people don't have, but I think the Google method that most people use does restore the APK from the Play
Store. But I think people only get what's available on the Play Store.
Does anyone know if the Google Play app backup method will get the exact
same version that you had on your phone, or only the latest version?
And what does it do if the app is no longer on the Google Play store?
Backing up app data, nowadays, with the latest Android versions, is likely almost impossible without being root, so it's not something I'll even try, although the best way to do that is to put all app data on the external sd card and name the external sd card something you can remember.--
That way, when you pop the old external sd card into a new phone, the new phone won't know the difference as apps think the data was always there.
Oh, and contacts. Most people use the default sqlite database, so I'm sure Google backs that up, and even if people don't use Google, it can be
exported to a vcf file and imported into any other contacts app.
What else do people generally need to back up for a new phone?
On 2026-06-07 13:46, Alan Peeling wrote:
On 05/06/2026 12:33, Carlos E.R. wrote:
On 2026-06-04 22:52, Alan Peeling wrote:I found the thread âHow do nonroot Android & nonjailbroken iOS run SMB
On 04/06/2026 07:20, Carlos E.R. wrote:
I am able to save most files to a computer, by using MTP protocolAre you able to save /Android/data/, /sdcard/Android, and most
in Linux. Sometimes I had success by using an FTP server on the phone. >>>>
subdirectories of /sdcard/Android?
With FTP I have /Android/data/. I don't have an /sdcard/ directory on
this phone.
With mtpfs I also have "/Android/data/", but I had to run the copy
several times till no errors were reported.
There is a thread here where we commented about it.
Re: How do nonroot Android & nonjailbroken iOS run SMB servers to
connect to each other & Windows?
From: Herbert Kleebauer <...>
Date: Thu, 24 Apr 2025 21:31:44 +0200
But the copies I made are dated July.
/2025-07-18-ftp                                            â 23331M
/2025-07-18-mtpfs                                          â 56257M
/2025-07-18-test                                           â 56170M
So the latest directory was made with a method that accessed more
files. I don't remember what method I used :-?
I will have to run tests again. I have a note that says to use FTP,
but must be a different than the one used in the first directory.
My notes on the ftp method say:
+++------------
Use Cx File Explorer on phone to activate ftp. The app can be
backgrounded, swipe from the bottom.
Copy over the files using mc to temporary directory. No, use FileZilla
Finally, use rsync to save space.
------------++-
Sigh, incomplete notes.
servers to connect to each other & Windows?â on https://
newsgrouper.org/ comp.mobile.android , thanks for the pointers. It is
a killer thread, it took me hours to read, and it's stuffed with the
sort of flames that make one embarrassed to be human.
I tried to point you to the exact post where we discussed backups :-)
It did contain some gems, for example I didn't know that Windows File
Explorer could be used as an FTP client. The app Carlos remembered
seems to be WebDAV FS, which lets the phone appear as a drive in File
Explorer. That seemed like useful functionality so I installed it. I
know File Explorer already has something similar but I've found it to
be flaky and confusing; I can never tell whether I'm working in the
phone or in a copy of it on my C: drive. I wasn't optimistic that
WebDAV FS would solve the problem of inaccessible Android folders. I
was right not to be optimistic, when I backed up through it I
recovered fewer files than GoodSync Server fetched, so in that respect
it's a turkey. There was a tantalising post suggesting that the
Android FTP server primitive ftpd, not in a sanitised version
available though Play Store, but in a more resourceful form that comes
from F-Droid, could access off-limits Android folders. I tried it and
it doesnât work.
Perhaps the way to back up my phone is to use Samsung Smart Switch
after major structural changes to its software and GoodSync Server for
day-to- day maintenance.
Whilst I was exploring I came across the news that, in a few weeks,
Google plans to block Android apps that it has not approved in a
bureaucratic and money consuming process. Everyone else may already
know about this but I didnât. There is a site at https://
keepandroidopen.org/ Â Â giving details and showing links that can be
used for asking regulatory bodies to oppose this nastiness.
One of these days I'm going to do a backup of my phone, and I'll post in this thread what I find.
I think it is the FTP server in Cx File Explorer in Android and
Filezilla on the computer (Linux in my case)
(https://play.google.com/store/apps/details? id=com.cxinventor.file.explorer)
The thing is, only two things are of interest to me in the backup: photos/videos, and WhatsApp. The rest, I can just reinstall. Ok, SMSs too.
The thing is, only two things are of interest to me in the backup: photos/videos, and WhatsApp. The rest, I can just reinstall. Ok, SMSs too.
On 07/06/2026 13:32, Carlos E.R. wrote:
On 2026-06-07 13:46, Alan Peeling wrote:
On 05/06/2026 12:33, Carlos E.R. wrote:
The thing is, only two things are of interest to me in the backup:
photos/videos, and WhatsApp. The rest, I can just reinstall. Ok, SMSs
too.
The thing is, only two things are of interest to me in the backup:
photos/videos, and WhatsApp. The rest, I can just reinstall. Ok, SMSs
too.
I'd like to have a fairly painless means of recovering from a factory
reset, should the need arise.
On 2026-06-07 20:57, Alan Peeling wrote:
On 07/06/2026 13:32, Carlos E.R. wrote:
On 2026-06-07 13:46, Alan Peeling wrote:
On 05/06/2026 12:33, Carlos E.R. wrote:
The thing is, only two things are of interest to me in the backup:
photos/videos, and WhatsApp. The rest, I can just reinstall. Ok, SMSs
too.
The thing is, only two things are of interest to me in the backup:
photos/videos, and WhatsApp. The rest, I can just reinstall. Ok, SMSs
too.
I'd like to have a fairly painless means of recovering from a factory
reset, should the need arise.
Can't be done. There is no simple way to take a phone or tablet that has been reset to factory state, and recover from a full backup on a disk or computer. I don't know about hard ways, either.
I think I know how to recover whatsapp.
Restore the phone, make sure whatsapp is not installed yet. If it is,
don't tap on it. Recover all the whatsapp files, its entire tree, and
then start whatsapp. Maybe, just maybe, it sees the files and uses them.
I did this once, long ago, and it worked. I don't know about now.
I'd like to have a fairly painless means of recovering from a factory reset, should the need arise.
Can't be done. There is no simple way to take a phone or tablet that has been reset to factory state, and recover from a full backup on a disk or computer. I don't know about hard ways, either.
I think I know how to recover whatsapp.
Restore the phone, make sure whatsapp is not installed yet. If it is, don't tap on it. Recover all the whatsapp files, its entire tree, and then start whatsapp. Maybe, just maybe, it sees the files and uses them. I did this once, long ago, and it worked. I don't know about now.
Restore the phone, make sure whatsapp is not installed yet. If it is, don't tap on it. Recover all the whatsapp files, its entire tree, and then start whatsapp. Maybe, just maybe, it sees the files and uses them. I did this once, long ago, and it worked. I don't know about now.
How about copying everything from an old phone to a new one in one operation?
On 07/06/2026 22:09, Carlos E.R. wrote:
On 2026-06-07 20:57, Alan Peeling wrote:
On 07/06/2026 13:32, Carlos E.R. wrote:
On 2026-06-07 13:46, Alan Peeling wrote:
On 05/06/2026 12:33, Carlos E.R. wrote:
The thing is, only two things are of interest to me in the backup:
photos/videos, and WhatsApp. The rest, I can just reinstall. Ok,
SMSs too.
The thing is, only two things are of interest to me in the backup:
photos/videos, and WhatsApp. The rest, I can just reinstall. Ok,
SMSs too.
I'd like to have a fairly painless means of recovering from a factory
reset, should the need arise.
Can't be done. There is no simple way to take a phone or tablet that
has been reset to factory state, and recover from a full backup on a
disk or computer. I don't know about hard ways, either.
I think I know how to recover whatsapp.
Restore the phone, make sure whatsapp is not installed yet. If it is,
don't tap on it. Recover all the whatsapp files, its entire tree, and
then start whatsapp. Maybe, just maybe, it sees the files and uses
them. I did this once, long ago, and it worked. I don't know about now.
I'd like to have a fairly painless means of recovering from a factory
reset, should the need arise.
Can't be done. There is no simple way to take a phone or tablet that
has been reset to factory state, and recover from a full backup on a
disk or computer. I don't know about hard ways, either.
I think I know how to recover whatsapp.
Restore the phone, make sure whatsapp is not installed yet. If it is,
don't tap on it. Recover all the whatsapp files, its entire tree, and
then start whatsapp. Maybe, just maybe, it sees the files and uses
them. I did this once, long ago, and it worked. I don't know about now.
How about copying everything from an old phone to a new one in one operation?
One of these days I'm going to do a backup of my phone, and I'll post in this thread what I find.
I think it is the FTP server in Cx File Explorer in Android and
Filezilla on the computer (Linux in my case)
(https://play.google.com/store/apps/details? id=com.cxinventor.file.explorer)
The thing is, only two things are of interest to me in the backup: photos/videos, and WhatsApp. The rest, I can just reinstall. Ok, SMSs too.
The difference is in the Android/data/* directory, many things are missing.
Carlos E.R. wrote:
The difference is in the Android/data/* directory, many things are missing.
I have been doing backup since forever, but I looked up what the
current state of affairs is, so this is from my search results only.
As noted, without root, with later Android versions, getting data out of protected sandboxed storage is, well, it's nigh near likely impossible.
Most people, as we all know, would use Google's marketed method to backup
and restore an old phone to a new phone, but there may be a better way.
If they're lucky, they can use an OEM's preferred backup method too.
a. Samsung Smart Switch (PC backup)
b. Pixel Switch
c. Motorola Rescue and Smart Assistant
On 2026-06-07 14:32, Carlos E.R. wrote:
...
So, there is a method out there that I used to create that "2025-07-18- test" backup that copied all that, but I don't remember what it was, my notes do not say. I have a guess what it would be, but I can not test it till I reboot the machine.
c. Motorola Rescue and Smart Assistant
My phones are Motorola, and my new tablet is Lenovo. I'm not familiar
with this tool, unless it is the thing that runs on first boot.
Carlos E.R. wrote:
c. Motorola Rescue and Smart Assistant
My phones are Motorola, and my new tablet is Lenovo. I'm not familiar
with this tool, unless it is the thing that runs on first boot.
My last Motorola was the Moto G that Google Fi gave me for $100 years ago.
Here's the European site on the Motorola Rescue & Smart Assistant tool.
<https://en-emea.support.motorola.com/app/answers/detail/a_id/161942/p/11325>
I'm not sure why they even have a USA site that seems the same though.
<https://en-us.support.motorola.com/app/answers/detail/a_id/161942/p/11138>
Bear in mind it only backs up your media and contacts and the like.
a. It does NOT back up apps or app data.
b. It requires a Windows PC (Windows 7/10/11).
c. The backup is encrypted (but you give it the password)
It's mainly intended for use before a software repair or factory reset.
Dunno how well it works though.
This entire directory is missed when doing a backup by FTP.
Carlos E.R. wrote:
This entire directory is missed when doing a backup by FTP.
Bummer that the Motorola tool apparently only works on Windows.
Sorry about that. I could be wrong though, so doublecheck it, as it seems
to work on macOS which usually (often?) means it can also work with Linux.
I noticed two things doing that research for you, one of which I've been noticing for the past year or two, which is that almost everything on the
net about Android backup is outdated by each new Android release.
Starting around Android 11, each new Android release seems to have added
more and more protection, such that almost everything out there is wrong.
I found this out the hard way when I was valiantly trying to get Muntashirakon App Manager's "back up apk" menu to work on Android 13.
Given we all know and respect Muntashirakon, I was not, at first, willing
to believe that the "Backup APK" (as opposed to "Save APK") wouldn't work.
I tried valiantly simply because I couldn't believe Muntashirakon had a
menu that didn't work, so I even added Shizuku to the mix, to no avail.
I tried for hours, and finally gave up, where we could blame Muntashirakon, but not really since no non-root app can defeat Android permissions.
Luckily, the Muntashirakon "Save APK" menu works beautifully, but what's different is the "Backup APK" menu also saved the app's data along with it.
My main point, in summary, is what used to work, no longer works, and therefore, much of what is on the Internet is wrong for app-data backup.
My main point, in summary, is what used to work, no longer works, and therefore, much of what is on the Internet is wrong for app-data backup.
| Sysop: | DaiTengu |
|---|---|
| Location: | Appleton, WI |
| Users: | 1,123 |
| Nodes: | 10 (0 / 10) |
| Uptime: | 34:57:03 |
| Calls: | 14,371 |
| Files: | 186,380 |
| D/L today: |
1,118 files (321M bytes) |
| Messages: | 2,540,620 |