Alright,
So I found what I need to remove it from being enabled by default, but I cannot figure out enough to disable it via smali.
The code:
http://hi-android.info/src/com/android/settings/PrivacySettings.java.html
Specifically,
Code:
mBackup.setChecked(enable);
mAutoRestore.setEnabled(enable);
I just need to turn these off, I believe.
Smali code:
http://pastebin.com/LRv3tNdC
Any help is appreciated.
Another reason I hate smali code. I much rather have source. I'd already be done :/
removing these lines this should do what y
Code:
invoke-virtual {v2, p1}, Landroid/preference/CheckBoxPreference;->setChecked(Z)V
invoke-virtual {v2, p1}, Landroid/preference/CheckBoxPreference;->setEnabled(Z)V
invoke-virtual {v2, v3}, Landroid/preference/CheckBoxPreference;->setChecked(Z)V
invoke-virtual {v2, v3}, Landroid/preference/CheckBoxPreference;->setEnabled(Z)V
or if you want to explicitly disable it, this should do it:
Code:
invoke-virtual {v2, v4}, Landroid/preference/CheckBoxPreference;->setChecked(Z)V
invoke-virtual {v2, v4}, Landroid/preference/CheckBoxPreference;->setEnabled(Z)V
invoke-virtual {v2, v4}, Landroid/preference/CheckBoxPreference;->setChecked(Z)V
invoke-virtual {v2, v4}, Landroid/preference/CheckBoxPreference;->setEnabled(Z)V
invoke-virtual opcode means call a method:
opcode {object, parameter}, class;->method signature
Here is some further documentation I found somewhere. If anybody is interested.
http://www.netmite.com/android/mydroid/dalvik/docs/dalvik-bytecode.html
looking at this code all this does is enable or disable the checkbox, is that what you want to do?
If you want to actually force disable the backupmanager when this method executes:
you probably need to do this:
Code:
invoke-interface {v0, v4}, Landroid/app/backup/IBackupManager;->setBackupEnabled(Z)V
Did you figure out how to stop this i would love to know how to stop it from auto installing apps so i can just use titanium because every time it does it i get a lot of apps i don't even use anymore and spend forever deleting them
john122675 said:
Did you figure out how to stop this i would love to know how to stop it from auto installing apps so i can just use titanium because every time it does it i get a lot of apps i don't even use anymore and spend forever deleting them
Click to expand...
Click to collapse
Until this gets figured out here is a work around I've been using. In TiBu, go to option, more, and create "update.zip". This will put a cwm flashable zip on your SD card that you can use to put TiBu back and everything else before entering your gmail info and giving OTA access to unwanted app downloads. After you restore what you want you can go to manage applications and clear market info so when you finally log on and go to the market it "should" only populate the apps you have installed already in 'my apps'. This might not totally work but it should cut back on unwanted downloads. Let me know if this method works out better for you.
You can avoid this by skipping account creations at first boot, just hit skip skip next skip. Then you can go into settings and make sure data backup is unchecked. This prevents automatic data backup/restore when you do log into your account. Now log into your Google account. During setup it will ask if you want your data backed up, make sure to uncheck that! It actually comes up with a message that asks if you really want to delete existing backups on Google servers? Of course you do want it to so this won't happen again.
No tweaks, no ADB, no apk's, no TiBu update.zip. All running a clean install of Superclean 2.8, follow those steps and once done you can relax, install TiBu and restore what you want.
thanks ill try that when i wipe data in a bit for a new rom. thanks for the fast response.
jamesnmandy said:
You can avoid this by skipping account creations at first boot, just hit skip skip next skip. Then you can go into settings and make sure data backup is unchecked. This prevents automatic data backup/restore when you do log into your account. Now log into your Google account. During setup it will ask if you want your data backed up, make sure to uncheck that! It actually comes up with a message that asks if you really want to delete existing backups on Google servers? Of course you do want it to so this won't happen again.
No tweaks, no ADB, no apk's, no TiBu update.zip. All running a clean install of Superclean 2.8, follow those steps and once done you can relax, install TiBu and restore what you want.
Click to expand...
Click to collapse
X2 That is the best way to do it to start fresh, I do it all the time especially if I start a new rom and want to narrow down a troublesome battery killer.
jamesnmandy said:
You can avoid this by skipping account creations at first boot, just hit skip skip next skip. Then you can go into settings and make sure data backup is unchecked. This prevents automatic data backup/restore when you do log into your account. Now log into your Google account. During setup it will ask if you want your data backed up, make sure to uncheck that! It actually comes up with a message that asks if you really want to delete existing backups on Google servers? Of course you do want it to so this won't happen again.
No tweaks, no ADB, no apk's, no TiBu update.zip. All running a clean install of Superclean 2.8, follow those steps and once done you can relax, install TiBu and restore what you want.
Click to expand...
Click to collapse
I will have to experiment with this next time I change my ROM. I'm wondering if it will have any adverse effects on reboots when wiping cache for patches or themes. Do you know to what extent the auto backup/restore saves settings? Does it backup everything to google in which case deleting backups on the servers once and unchecking the box would fix this for good?
jamesnmandy said:
You can avoid this by skipping account creations at first boot, just hit skip skip next skip. Then you can go into settings and make sure data backup is unchecked. This prevents automatic data backup/restore when you do log into your account.
No tweaks, no ADB, no apk's, no TiBu update.zip. All running a clean install of Superclean 2.8, follow those steps and once done you can relax, install TiBu and restore what you want.
Click to expand...
Click to collapse
Where is this setting? Last time I flashed I set this to 'no' during the setup. But is there someplace to check/set this under settings somewhere?
jamesnmandy said:
You can avoid this by skipping account creations at first boot, just hit skip skip next skip. Then you can go into settings and make sure data backup is unchecked. This prevents automatic data backup/restore when you do log into your account. Now log into your Google account. During setup it will ask if you want your data backed up, make sure to uncheck that! It actually comes up with a message that asks if you really want to delete existing backups on Google servers? Of course you do want it to so this won't happen again.
No tweaks, no ADB, no apk's, no TiBu update.zip. All running a clean install of Superclean 2.8, follow those steps and once done you can relax, install TiBu and restore what you want.
Click to expand...
Click to collapse
Wow, I think this worked. Thanks.
One question, does disabling backup inhibit the backing up of my contacts, emails addresses, etc?
PeterGunz said:
Wow, I think this worked. Thanks.
One question, does disabling backup inhibit the backing up of my contacts, emails addresses, etc?
Click to expand...
Click to collapse
your contacts should still carry over, mine did
Sent from my SCH-I500 using Tapatalk
jamesnmandy said:
You can avoid this by skipping account creations at first boot, just hit skip skip next skip. Then you can go into settings and make sure data backup is unchecked. This prevents automatic data backup/restore when you do log into your account. Now log into your Google account. During setup it will ask if you want your data backed up, make sure to uncheck that! It actually comes up with a message that asks if you really want to delete existing backups on Google servers? Of course you do want it to so this won't happen again.
No tweaks, no ADB, no apk's, no TiBu update.zip. All running a clean install of Superclean 2.8, follow those steps and once done you can relax, install TiBu and restore what you want.
Click to expand...
Click to collapse
Thanks a lot!!! Worked without any issues, now I can restore my phone in like 10mins or less from a complete wipe!
Sent from my SCH-I500 using Tapatalk
tnez said:
your contacts should still carry over, mine did
Sent from my SCH-I500 using Tapatalk
Click to expand...
Click to collapse
I think its not quite this simple. Questions in my mind:
Are all the contacts Google Contacts, Phone contacts, or a combination of both? Also do contacts carry over if you do a Data wipe/restore. (I'm not sure of the answer to that since all my contacts are Google contacts.)
I'm not sure what you guys are asking. All my contacts are Google contacts and they have not been affected at all. This will not affect your contacts, at least not Google contacts. Do what I did, take the time to put all your contacts in Google, contacts problem solved. This prevents the apps from being restored by Google. Every time I change Roms I wipe data, wipe cache, and wipe Dalvik cache, then I follow the directions I posted here. Like others have said I can go from wiped to back and running in 10 minutes . I even started backing up some of the settings so I don't have to enter wifi passwords and such. It just works.
Related
I just flashed Bionix V over Nero v5. Per instruction from teamwhiskey/sombionix, I only restored third party applications and not system apps. I just realized some of my contacts are missing along with all of the mms, sms and call logs. How can I restore just the missing contacts. Plus How can I restore my mms/sms and call logs. Before flashing, I had backed up 'all user apps + all system data' so I know everything is backed up in titanium backup. What files am I looking for to restore these?
Thanks.
You have to restore system apps to get the mms / sms back. As for the contacts, do you not have them setup on your gmail account or are they on your sim? Putting them in gmail would be the best thing from now on.
Sent from my SGH-T959 using XDA App
Read through here. You will probably find what your looking for.
forum.xda-developers.com/showthread.php?t=849840
Sent from my SGH-T959 using XDA App
You should be able to restore all of your contacts by clicking to restore "[CONTACTS/CALLS] Contacts Storage" in Titanium Backup. It's one of the green items on your list. After they've been restored, reboot your phone.
That said, I tried doing the same thing and a bunch of my phone-saved numbers were still not restored. It's possible that I re-backed up a bunch of apps and data (including contacts info) on TB before the system had a chance to fully restore everything, therefore deleting a bunch of my contacts when I reflashed Bionix V to fix another mistake I made (what can I say, it was my first time rooting my phone and flashing a ROM), so it was all probably my own fault. Fortunately, I had almost all of my contact information on my old G1 still, so I just saved all of that to Gmail and it automatically synced w/ the Contacts on my Vibrant.
Otherwise, I would have had to use Odin or Heimdall to bring my phone back to stock so that I could restore the nandroid backup from when my phone still had the info. Or, I could have tried to simply flash a JI6 kernel, but with that came the risk of a Android 2.1 kernel severely clashing with a 2.2 system. In your case, it seems like you should be able to reflash Nero v5, restore a nandroid backup from that system, and save all of your contacts the proper way.
After learning the hard way, I will concur with others who suggest saving all of your contacts to Gmail in the future. Or, you can back up your contacts in your phone by choosing to "export" them to your external sd card in the Contacts menu.
I believe that you can retrieve contact info saved to your SIM card by choosing to "import" them in the Contacts menu, as well.
Best of luck!
What do these various system services with useful data contain exactly? Most of the names were self explanatory but I'm not exactly sure what these do some clarification would be nice.
Accounts
Application Widgets
Bluetooth Pairings
[CONTACTS/CALLS]
[VOICEMAIL]
[WALLPAPER/SETTINGS]
[SETTINGS/BLUETOOTH]
HappyRoot said:
What do these various system services with useful data contain exactly? Most of the names were self explanatory but I'm not exactly sure what these do some clarification would be nice.
Click to expand...
Click to collapse
Accounts - backup all your created accounts
Bluetooth Pairings - backup all settings with connected phones
[CONTACTS/CALLS] - backup all contacts and calling list
[VOICEMAIL] - backup all your voice messages
[WALLPAPER/SETTINGS] - backup your HS wallpaper
[SETTINGS/BLUETOOTH] - backup your bt configuration
Thank you I thought voice mail was stored server side.
What do you mean by created account what are they specifically?
I also forgot to ask about one does anyone know what "applications widgets" would be?
Also is there an option to store all your android settings?
HappyRoot said:
Thank you I thought voice mail was stored server side.
What do you mean by created account what are they specifically?
I also forgot to ask about one does anyone know what "applications widgets" would be?
Also is there an option to store all your android settings?
Click to expand...
Click to collapse
So u have some account like google or not?
If u selected backup all user applications and system data so after clean install or another ROM u'll have all settings back in phone.
application widgets - don't know sure what it is but i think that it's backup all your widgets app...
Thanks so there isn't really an option to copy over everything from settings? Also what is a good custom recovery to load so I can do a nand backup?
HappyRoot said:
Thanks so there isn't really an option to copy over everything from settings? Also what is a good custom recovery to load so I can do a nand backup?
Click to expand...
Click to collapse
I'm using cwm (ClockWord mod recovery)..so from my opinion I backup only few apps which is hard to install again thats all..all my contacts are safed on the server of google and other apps I install again..after 30 minut is all back
Hi,
I'm looking for an app that backs up the "Accounts & Sync" settings for all my accounts, before flashing a new rom. I tried "MyBackup" from the market and it backed up my Sensation quite nicely, but it doesn't restore the accounts and setting up everything again was a pain.
Does anyone know of an app that does a backup that includes a backup of the "Accounts & Sync" settings?
Thanks!
Hi!
you have many choices!
1- Nandroid backup.
you can do a Nandroid backup by the recovery.
Be careful you must have more than 1Go free space on your sd card.
So install recovery.
Then reboot on recovery mode.
GO on backup/restore
The phone save all your phone.
then you can restored it. or just datas if you want.
2- Save By titanium Backup
This is an app which is created to save all your datas and restore it after.
With full version you can be faster and restore all apps at the same time.
With free it's harder... one by one :s
Don't forget thanks button
Do you need more infos?
I have a follow-up question to this. Several, actually:
* Where can I find nandroid? googling finds me something that is several years old.
* Titanium backup, while it contains a section for "backup/restore all system data" first doesn't actually contain any entries, and second is actually much more than we want.
What we're looking for, if I understand OP correctly, is something that ONLY backs up "Accounts & Sync". This is by far the most annoying thing about wiping and reflashing roms, and is also unlikely to be the cause of errors (at least for reflashing the same rom). Thus, is there an application, or a mode in an application or something, that lets us back up *only* the "Accounts & Sync" settings?
NANDROID refers to the back up process from within your recovery program I.E Clockwork, 4EXT Ect... It will be listed as "Backup" in those programs when you are in recovery mode.
You can just backup the "Accounts and Sync Settings" from within titanium, or you can use ROMToolbox which is what i use, both are pretty much the same program but ROMToolbox does alot more than just backups. You will find the "Accounts and Sync Settings" under the "System" tab from within either program.
Once you have backed up the "Accounts and Sync Settings" it would simply be a case of reinstalling either titanium or toolbox and restoring the afore mentioned .apk once you have flashed your new ROM.
dstylazz said:
NANDROID refers to the back up process from within your recovery program I.E Clockwork, 4EXT Ect... It will be listed as "Backup" in those programs when you are in recovery mode.
You can just backup the "Accounts and Sync Settings" from within titanium, or you can use ROMToolbox which is what i use, both are pretty much the same program but ROMToolbox does alot more than just backups. You will find the "Accounts and Sync Settings" under the "System" tab from within either program.
Once you have backed up the "Accounts and Sync Settings" it would simply be a case of reinstalling either titanium or toolbox and restoring the afore mentioned .apk once you have flashed your new ROM.
Click to expand...
Click to collapse
Regarding the NANDROID, ok, that's good to know, thanks =)
Regarding backing up the settings, I can't seem to find anything like that in titanium backup or in (the screenshots for) ROMToolbox (I assume this is what you are referring to: https://play.google.com/store/apps/details?id=com.liteupmobile.secretcodes)
Do I need a pro version or something for this to be available?
No the one i was referring to is made by JRummy Here
The section you will be looking for once installed is "App Manager" once in that or any other program that romtoolbox offers you slide left to switch tabs
EDIT: Ah just installed titanium there to have a look and that displays everything under the same menu (sorry i thought it was similar to toolbox) and it will be highlighted red to indicate it is a system Application / File..
Since we last spoke, I also found it in TitaniumBackup, actually. All I to do was dig a bit =)
I haven't tried restoring it, though. I also don't know where the data actually ended up. It doesn't seem to be in /sdcard/TitaniumBackup like my backed up apps... Any idea?
Em it will be there, on your sdcard / titanium backup folder and there will be in three separate files something like.
The three file names mentioned below contain all the info from your "Accounts & Sync Settings"
com.android.providers.subscribedfeeds-20120418-113609.properties
com.android.providers.subscribedfeeds-20120418-113609.tar.gz
com.android.providers.subscribedfeeds-d6ff2fe87c9c58dd29b2258d83008617.apk.gz
The number and letter strings may be different on your device / sdcard, but those are the files you will be looking for.
I found a bunch of those for the apps I've backed up, but not the settings. I'll look further when I get home.
I simply showed the "system" apps, and some of them showed up as green. Those were the ones I backed up, because they seemed to have reasonable names, like "Accounts" and "SMS/MMS", etc. The red colored ones seemed, indeed, to be system apps, the apps themselves.
I think I found them. It looks like they have names like this:
com.keramidas.virtual.ACCOUNTS-20120417-153858.properties
com.keramidas.virtual.APP_WIDGETS-20120417-153918.properties
com.keramidas.virtual.WIFI_AP_LIST-20120417-154139.properties
Be careful when restoring system data to rooms. This can and has been proven to cause issues as with each update there are changes to where and how things are saved. It is advised by just about every developer to never restore system data and won't except any bug reports if you do restore system data of any kind.
zelendel said:
Be careful when restoring system data to rooms. This can and has been proven to cause issues as with each update there are changes to where and how things are saved. It is advised by just about every developer to never restore system data and won't except any bug reports if you do restore system data of any kind.
Click to expand...
Click to collapse
While that is true restoring accounts and sync settings between roms (especially if its not a version jump for example 2.2>>2.3) it won't cause any (critical) errors.
Sent from my Optimus Me using xda premium
nerot said:
While that is true restoring accounts and sync settings between roms (especially if its not a version jump for example 2.2>>2.3) it won't cause any (critical) errors.
Sent from my Optimus Me using xda premium
Click to expand...
Click to collapse
That all depends on how the dev setup the rom. Like my personal roms. Restoring any system data from any other rom even from the same OS version will boot loop you and require a reflash.
How do you backup and restore Settings/Accounts?
I tried restoring the Google App but I don't think the configured google accounts are stored in it. How would I be able to restore all of the accounts configured in settings/accounts?
Restore all accounts to tablet
fishinpercolator said:
I tried restoring the Google App but I don't think the configured google accounts are stored in it. How would I be able to restore all of the accounts configured in settings/accounts?
Click to expand...
Click to collapse
Yes, I would be interested in this as well. I have many accounts I've configured on my Note 10.1 2014, but after upgrading to 5.1.1, I want to know if I could get all the accounts I had configured previously, somehow configure automatically to my Note, instead of adding them individually and manually.
thanks
Simple you can't. Well you can but it takes root and causes instability
No one App can happen us to backup all the Google accounts settings? I mean with a rooted phone.
Thanks
Hey XDA,
I installed a ROM in my GS2, restored using Titanium, got this error, looked for a solution, cleared contacts data, lost all my contacts (can't fix it) - installed another ROM, restored using Titanium, got same error.
It has become QUITE annoying since I can only use the phone until this message pops up and I have to clear data again.
I want a permanent solution to this.
Thanks!
Don't restore data on system apps when you do a restore.
In fact, unless the new rom doesn't have a system app that you really, absolutely must have from your previous rom, don't restore system apps at all.
When I first started using Miui I had this problem the first few days & I discovered by trial & error (and later read) that is good practice and gets rid of most of those problems.
Thanks for the quick reply!
Would I only restore apps and games? Not contacts? How would I get my contacts back? Would I just have to ask everyone again for their number!? D:
Restore contacts from your backup . Restore only apps from Titanium if no problem then you can start to restore apps and data one by one to find the culprit .
Easier if you had a recent nandroid backup .
jje
Yeah restore your apps, games & so on, you can usually restore the app/game data as well, but occasionally you'll get FC's if you do. If so, fix is the same, restore app only/not data.
You should normally be right to restore your contacts. If you find that's also causing you FC's, you can get an app like App Extractor from the Market which enables you to restore your contacts/SMS's from a Nandroid/CW backup. There are also lots of other apps on the Market which enable you to backup/restore your contacts/SMS's/call logs/etc.
Output95 said:
Thanks for the quick reply!
Would I only restore apps and games? Not contacts? How would I get my contacts back? Would I just have to ask everyone again for their number!? D:
Click to expand...
Click to collapse
i have found the solution.
the problem is when you restore some of the apps AND data, which have a "sync" contact function will screw up the "sync" function.
All you have to do is to restore ONLY App for those apps (which "sync" contacts, for example, Hotmail or Whatsapp), then restore apps and data for the rest of the apps thru Tibu.
mine is perfectly fine now after a few trial and errors.
more info about it
I've used ROM Toolbox to backup and then restore contacts and start having these problem.
The problem, effectively seems to be a sync problem, but in my case not with fb but with gmail itself, so what I did:
1. turn off auto sync
2. remove all accounts (gmail, fb, skype). For skype you have to remove the app all thogheter.
3. Go Applications > and clear data and cache for contacts, contacts storage (any of them). Your contacts will not go away, b/c you already have them in gmail.
4. Restore contacts with Titanium backup (application only, no data).
5. reboot
6. you may still have the problem once yet.
7. create the gmail account again and allow to sync. once finish, create the other accounts (fb, skype, whatever).
Issue went away.
Hope this helps
unfortunately the process android process acore has stopped
Output95 said:
Hey XDA,
I installed a ROM in my GS2, restored using Titanium, got this error, looked for a solution, cleared contacts data, lost all my contacts (can't fix it) - installed another ROM, restored using Titanium, got same error.
It has become QUITE annoying since I can only use the phone until this message pops up and I have to clear data again.
I want a permanent solution to this.
Thanks!
Click to expand...
Click to collapse
You need to install contact.apk and contact provider.apk in root, location is system/app
to root download superuser and root browser
Bobby Bijukchhe
fabianp said:
I've used ROM Toolbox to backup and then restore contacts and start having these problem.
The problem, effectively seems to be a sync problem, but in my case not with fb but with gmail itself, so what I did:
1. turn off auto sync
2. remove all accounts (gmail, fb, skype). For skype you have to remove the app all thogheter.
3. Go Applications > and clear data and cache for contacts, contacts storage (any of them). Your contacts will not go away, b/c you already have them in gmail.
4. Restore contacts with Titanium backup (application only, no data).
5. reboot
6. you may still have the problem once yet.
7. create the gmail account again and allow to sync. once finish, create the other accounts (fb, skype, whatever).
Issue went away.
Hope this helps
Click to expand...
Click to collapse
well i cant restore app but i just restore data and it works ty!
if u have this problem,just plug in to u pc,install driver and copy paste 2 file that i attach...
if u have this problem,just plug in to u pc,install driver and copy paste 2 file that i attach...
ROM Toolbox
fabianp said:
I've used ROM Toolbox to backup and then restore contacts and start having these problem.
The problem, effectively seems to be a sync problem, but in my case not with fb but with gmail itself, so what I did:
1. turn off auto sync
2. remove all accounts (gmail, fb, skype). For skype you have to remove the app all thogheter.
3. Go Applications > and clear data and cache for contacts, contacts storage (any of them). Your contacts will not go away, b/c you already have them in gmail.
4. Restore contacts with Titanium backup (application only, no data).
5. reboot
6. you may still have the problem once yet.
7. create the gmail account again and allow to sync. once finish, create the other accounts (fb, skype, whatever).
Issue went away.
Hope this helps
Click to expand...
Click to collapse
I think ROM Toolbox needs to fix up there Bugs!!!
Last Night
I used ROM Toolbox but only for changing settings and I ended up with the same error on my Desire HD, Testing Your theory now!
Cheers! Thanks Champ!
just some hints from developer point view, if any of the 3rd party application used the system id as application id, once the application fc for any reason, you will see the error, so, I would suggest you install apps that you totally trust that are stable, then try other apps later
Sent from my mfld_pr3 using XDA
I'm experiencing this problem too. It starts after a while and affects everything and anything e.g. messaging, whatsapp, talk, drive you name it.
This problem started ever since I update to resurrection 2.6 could it possibly be because the update was in my phone and not on the sdcard?
Samzung said:
I'm experiencing this problem too. It starts after a while and affects everything and anything e.g. messaging, whatsapp, talk, drive you name it.
This problem started ever since I update to resurrection 2.6 could it possibly be because the update was in my phone and not on the sdcard?
Click to expand...
Click to collapse
Hey, the problem is from the sdcard and not from your phone, I've experienced it and even flashing back to stock didn't solve it the only thing that did is clearing out the cache from contacts and contacts storage from application manager in the settings of the phone .
When I had my iPhone, I can do iTunes backup to my Mac and when I have a new iPhone, I can do restore of the apps and data from the previous iPhone. It restore everything, including apps, the apps data, email configuration, etc.
For Android, there is "Backup My Data" under Settings --> Accounts. Does this do the same thing as the above?
For example, I tried to do this:
1). Check "Backup My Data"
2). Associate this with one of my Gmail account
3). Get a new Android phone and... I don't see "Restore" in the same Settings.
I DO see the settings to Backup My Data in the new Android phone, but I am afraid if I checked this, it will overwrite the data in Google's server
I am trying to figure out if Backup My Data can re-download all the apps installed in the older device, including the apps data. I don't care about email or contacts, since those are synced to my Gmail accounts.
lanwarrior said:
When I had my iPhone, I can do iTunes backup to my Mac and when I have a new iPhone, I can do restore of the apps and data from the previous iPhone. It restore everything, including apps, the apps data, email configuration, etc.
For Android, there is "Backup My Data" under Settings --> Accounts. Does this do the same thing as the above?
For example, I tried to do this:
1). Check "Backup My Data"
2). Associate this with one of my Gmail account
3). Get a new Android phone and... I don't see "Restore" in the same Settings.
I DO see the settings to Backup My Data in the new Android phone, but I am afraid if I checked this, it will overwrite the data in Google's server
I am trying to figure out if Backup My Data can re-download all the apps installed in the older device, including the apps data. I don't care about email or contacts, since those are synced to my Gmail accounts.
Click to expand...
Click to collapse
Backup and restore works by backing up which apps you've installed, contacts, etc and, when you get a new phone, it will restore these items back. During a new phone booting on, fresh ROM, the setup allows the user to restore from Google account that you backed up to it. IT happens also when you flash new ROMs as well during setup. The backup function allows, before getting a new phone to backup and then restore in new phone during setup. The apps however will need to be reset to custom settings because the phone will redownload them from play store yet will not have any of the settings you previously did.
RevelationOmega said:
The apps however will need to be reset to custom settings because the phone will redownload them from play store yet will not have any of the settings you previously did.
Click to expand...
Click to collapse
Ah, that's key. That means I have to redo ALL the settings in each app again. I was hoping Google backup will restore individual app settings AND data, as described in my 1st post. In Settings --> Accounts --> Google account, I have the "Sync App Data" checked, but I guess it's not doing anything to backup app settings and data.
OK, I guess I have to use Titanium Backup or Helium instead. With Helium, once I installed an app (whether it's Playstore or Amazon's Appstore), I can restore the data and it works exactly as it was in the old device.
lanwarrior said:
Ah, that's key. That means I have to redo ALL the settings in each app again. I was hoping Google backup will restore individual app settings AND data, as described in my 1st post. In Settings --> Accounts --> Google account, I have the "Sync App Data" checked, but I guess it's not doing anything to backup app settings and data.
OK, I guess I have to use Titanium Backup or Helium instead. With Helium, once I installed an app (whether it's Playstore or Amazon's Appstore), I can restore the data and it works exactly as it was in the old device.
Click to expand...
Click to collapse
Yes, a custom backup (ie Titanium or Helium) backup your data from the apps. Google just contacts, etc for minimal restore from one device to next. One of those or related should work because they make an extractable file you can drag/drop from one phone to the next and be able to restore very well. Helium may be the better way to go. Ran into problems recently with Titanium since 4.4 but may be fixed by now.
does anyone else have the problem when installing a new ROM that Google doesn't restore the apps? I have had this problem nearly every time I have installed a new ROM, and eventually have to end up restoring (which is a total PITA.) I often wonder if I am missing something, as this drives me completely nucking futs.