ROM flashing and whatsapp backups on TB - Nexus 6P Q&A, Help & Troubleshooting

Hello
I switch ROMs from time to time and whatsapp is the only app that gives me issues. Sometimes i even flash 3 ROMs in a day. I usually backup my apps using Titanium Backup and restore app+data once on the new ROM. There are times that i only backup whatsapp app+data as there is a 24 hour restriction on re-registering with whatsapp servers ( sms or calls ) . Anyone know a workaround this ?
I usually backup whatsapp app+data and then restore it once on the new ROM. The problem with this is that even though i get my whatsapp data back and apply the required permissions , I am still not able to get push notifications from whatsapp. I have to launch the app to check for new messages. For me to get the push notifications , i have to uninstall the app , reinstall and do the registration again.
Is this tied into Google connectivity services or Android ID as a new one is generated upon the TibU install ? How does everyone else get around this being a flashaholic ? :fingers-crossed:

likonvampire said:
Hello
I switch ROMs from time to time and whatsapp is the only app that gives me issues. Sometimes i even flash 3 ROMs in a day. I usually backup my apps using Titanium Backup and restore app+data once on the new ROM. There are times that i only backup whatsapp app+data as there is a 24 hour restriction on re-registering with whatsapp servers ( sms or calls ) . Anyone know a workaround this ?
I usually backup whatsapp app+data and then restore it once on the new ROM. The problem with this is that even though i get my whatsapp data back and apply the required permissions , I am still not able to get push notifications from whatsapp. I have to launch the app to check for new messages. For me to get the push notifications , i have to uninstall the app , reinstall and do the registration again.
Is this tied into Google connectivity services or Android ID as a new one is generated upon the TibU install ? How does everyone else get around this being a flashaholic ? :fingers-crossed:
Click to expand...
Click to collapse
This is a bug
Happened to me way before
This is what i do
Backup chats within the whatsapp settings (just to be sure if TB gives some prob, can happen so why not take precautions )
Then downlaod whatsapp from play store and restore your data when setting up the device
Or
Backup app+data from TB
Download whatsapp from store
And without opening it go into settings and give all the permissions and then switch to TB select whatsapp and select restore data only
And you should be good to go.
Cheers :highfive:
Sent from my Nexus 6P using XDA Labs

Thnaks I will follow your method next time , appreciated!

Why dont you just allow Whatsapp to do a backup of your messages (in the middle of the night) and then just use Whatsapp to restore them after you flash your new rom? Do you actually modify a lot of settings in Whatsapp?

uodii said:
Why dont you just allow Whatsapp to do a backup of your messages (in the middle of the night) and then just use Whatsapp to restore them after you flash your new rom? Do you actually modify a lot of settings in Whatsapp?
Click to expand...
Click to collapse
Backing up is not the issue , there is a 24 hour limit for registration to whatsapp servers . If SMS is used that option is taken away and then calling option gets available. If that's done too , you have to wait 24 hours

Related

[SOLVED] How to restore SMS in Android 4.4 / Hangouts

Edit: SMS Backup and Restore was updated to support 4.4, an even restoring from backups that were created before updating works fine.
Original post said:
Does anyone know a method or an app that is able to restore SMS in Android 4.4 KitKat? I'm running this N5 port, which works great, but I cannot find a single app that is updated to support restore on Android 4.4. With SMS Backup & Restore I am able to restore into the 4.3 stock messaging app that I pushed via adb, but all messages are empty afterwards. And they are not shown at all in Hangouts.
I know that Google said SMS backup apps need to be updated in order to support KitKat (read 3rd section on this blogpost), but I can't believe there is no single updated app or other method yet.
Any advices, guys?
Edit: Here's the relevant section of the Android Developer Blog post:
Advice for SMS backup & restore apps
Because the ability to write to the SMS Provider is restricted to the app the user selects as the default SMS app, any existing app designed purely to backup and restore SMS messages will currently be unable to restore SMS messages on Android 4.4. An app that backs up and restores SMS messages must also be set as the default SMS app so that it can write messages in the SMS Provider. However, if the app does not also send and receive SMS messages, then it should not remain set as the default SMS app. So, you can provide a functional user experience with the following design when the user opens your app to initiate a one-time restore operation:
1. Query the current default SMS app's package name and save it.
Code:
String defaultSmsApp = Telephony.Sms.getDefaultSmsPackage(context);
2. Request the user change the default SMS app to your app in order to restore SMS messages (you must be the default SMS app in order to write to the SMS Provider).
Code:
Intent intent = new Intent(context, Sms.Intents.ACTION_CHANGE_DEFAULT);
intent.putExtra(Sms.Intents.EXTRA_PACKAGE_NAME, context.getPackageName());
startActivity(intent);
3. When you finish restoring all SMS messages, request the user to change the default SMS app back to the previously selected app (saved during step 1).
Code:
Intent intent = new Intent(context, Sms.Intents.ACTION_CHANGE_DEFAULT);
intent.putExtra(Sms.Intents.EXTRA_PACKAGE_NAME, defaultSmsApp);
startActivity(intent);
Click to expand...
Click to collapse
After a reboot, my SMS were disapeared.
Mine too. So back to square one :/
Sent from my Nexus 4 using Tapatalk 4
sms backup just got an update today .. it works :good:
Yep, works perfectly now, even with backups that were done before updating the app. So... Solved again.
Sent from my Nexus 7 using Tapatalk 4
I'm trying to restore on my N5 but no new messages show up in my hangouts even with the newest SMS backup and restore version.
It has set my hangouts back as default SMS app but still nothing there.
electric0ant said:
I'm trying to restore on my N5 but no new messages show up in my hangouts even with the newest SMS backup and restore version.
It has set my hangouts back as default SMS app but still nothing there.
Click to expand...
Click to collapse
Same here...
janoliver said:
Same here...
Click to expand...
Click to collapse
Yup, same here
I had the same issue on my Nexus 5 with stock Kitkat 4.4 , so this may help.
- SMS Back and Restore made copy of texts on my Nexus 4
- copied backup to my Nexus 5
- restored messages, setting SMS Backa and Restore and def. SMS app when prompted, and then set Hangouts as def. app after
No text messages in Hangouts. Rebooted phone, still not text messages in Hangouts. I performed a test backup with SMS Backup and Restore, and it showed a bunch of messages being backed up, so it seems the messages WERE restored but just not showing.
I then went in Settings > Apps > All
Selected Hangouts, and cleared Cache and then Cleared all Data
I loaded Hangouts and all of a sudden, all my text messages were there.
Hope this helps, if so, don't be shy to hit that Thanks button below
uberNoobZA said:
I then went in Settings > Apps > All
Selected Hangouts, and cleared Cache and then Cleared all Data
I loaded Hangouts and all of a sudden, all my text messages were there.
Click to expand...
Click to collapse
Thank you! This did the trick
help
uberNoobZA said:
I had the same issue on my Nexus 5 with stock Kitkat 4.4 , so this may help.
- SMS Back and Restore made copy of texts on my Nexus 4
- copied backup to my Nexus 5
- restored messages, setting SMS Backa and Restore and def. SMS app when prompted, and then set Hangouts as def. app after
No text messages in Hangouts. Rebooted phone, still not text messages in Hangouts. I performed a test backup with SMS Backup and Restore, and it showed a bunch of messages being backed up, so it seems the messages WERE restored but just not showing.
I then went in Settings > Apps > All
Selected Hangouts, and cleared Cache and then Cleared all Data
I loaded Hangouts and all of a sudden, all my text messages were there.
Hope this helps, if so, don't be shy to hit that Thanks button below
Click to expand...
Click to collapse
Sorry, how did you set SMS B&R how def. sms app? When i prompt the app, it does not require to be def. sms app, so i cannot restore my sms. Please help...
eziotroito said:
Sorry, how did you set SMS B&R how def. sms app? When i prompt the app, it does not require to be def. sms app, so i cannot restore my sms. Please help...
Click to expand...
Click to collapse
Install the latest SMS Backup and Restore, and it will prompt you when you perform a restore. If not, then I do not know, as I was prompted to set is as default SMS app when I did a restore.
help
uberNoobZA said:
Install the latest SMS Backup and Restore, and it will prompt you when you perform a restore. If not, then I do not know, as I was prompted to set is as default SMS app when I did a restore.
Click to expand...
Click to collapse
Yep, i was running an other WRONG app, so i download the right and now it ask me to be def. sms app, but now i have another issue:
my .xml file come from TITANIUM BACKUP, so now SMS B&R, see my xml file, but if I tap to VIEW SMS, it tell me there is no conversation, ALSO IF IT SEE MY XML FILE! How is it possible? Maybe titanium backup xml file are wrong for this app? Xml file are not all the same for any app?!? Please help, 'cause titanium backup is not up to date, so does not ask to be def. app and not restore anything!
eziotroito said:
Yep, i was running an other WRONG app, so i download the right and now it ask me to be def. sms app, but now i have another issue:
my .xml file come from TITANIUM BACKUP, so now SMS B&R, see my xml file, but if I tap to VIEW SMS, it tell me there is no conversation, ALSO IF IT SEE MY XML FILE! How is it possible? Maybe titanium backup xml file are wrong for this app? Xml file are not all the same for any app?!? Please help, 'cause titanium backup is not up to date, so does not ask to be def. app and not restore anything!
Click to expand...
Click to collapse
If you want to restore data from a backup made with titanium backup, you need to use titanium backup.
uberNoobZA said:
If you want to restore data from a backup made with titanium backup, you need to use titanium backup.
Click to expand...
Click to collapse
Same problem, titanium bckp does not ask to be def sms app, i hope in an update , thank u very much
Has anyone got things working usings SMS Backup+? I used to use B&R but switched to SMS Backup+ b/c I liked the gmail search-ability. SMS Backup+ goes through the restore process and states it restored 500 messages (current restore setting) but nothing shows up. I'm guessing this has to do with the KitKat and the whole "primary SMS app" thing?
mcubed45 said:
Has anyone got things working usings SMS Backup+? I used to use B&R but switched to SMS Backup+ b/c I liked the gmail search-ability. SMS Backup+ goes through the restore process and states it restored 500 messages (current restore setting) but nothing shows up. I'm guessing this has to do with the KitKat and the whole "primary SMS app" thing?
Click to expand...
Click to collapse
I have the same Issue with SMS Backup+
Will probably have to wait for the developer to update.
Same issue here, with SMS Backup+
Add me to the SMS Backup+ not restoring texts.
worked perfectly for me!
thanks uberNoobZA!!!!
uberNoobZA said:
I had the same issue on my Nexus 5 with stock Kitkat 4.4 , so this may help.
- SMS Back and Restore made copy of texts on my Nexus 4
- copied backup to my Nexus 5
- restored messages, setting SMS Backa and Restore and def. SMS app when prompted, and then set Hangouts as def. app after
No text messages in Hangouts. Rebooted phone, still not text messages in Hangouts. I performed a test backup with SMS Backup and Restore, and it showed a bunch of messages being backed up, so it seems the messages WERE restored but just not showing.
I then went in Settings > Apps > All
Selected Hangouts, and cleared Cache and then Cleared all Data
I loaded Hangouts and all of a sudden, all my text messages were there.
Hope this helps, if so, don't be shy to hit that Thanks button below
Click to expand...
Click to collapse

How to backup/restore text messages?

I tried SMS Backup+ and it doesn't work. It seems to backup everything, but when I restore, it just shows everyone's name in the text message list and each conversation is completely empty.
So I'm wondering 2 things:
1. Are there any apps that actually work for doing this right now with the Galaxy Note 4?
2. Can I manually extract my text messages? My phone is rooted. Here's the deal -- I'm flashing a new ROM and want to carry over my text message history. I would gladly do this manually if I knew how. I don't know where they're located or if this can be done.
lmills.117 said:
I tried SMS Backup+ and it doesn't work. It seems to backup everything, but when I restore, it just shows everyone's name in the text message list and each conversation is completely empty.
So I'm wondering 2 things:
1. Are there any apps that actually work for doing this right now with the Galaxy Note 4?
2. Can I manually extract my text messages? My phone is rooted. Here's the deal -- I'm flashing a new ROM and want to carry over my text message history. I would gladly do this manually if I knew how. I don't know where they're located or if this can be done.
Click to expand...
Click to collapse
Sign up to a Samsung account. This will back up texts, call logs, snote stuff etc when you set it to
http://forum.xda-developers.com/showthread.php?p=56676703
Sent from my SM-N910T using XDA Free mobile app
Why not use Kies?
pedmond said:
Why not use Kies?
Click to expand...
Click to collapse
It will work if both are samsung phones, otherwise you out of luck using kies.
Sent from my SM-N910T using XDA Free mobile app
Titanium backup
I use this.
lmills.117 said:
I tried SMS Backup+ and it doesn't work. It seems to backup everything, but when I restore, it just shows everyone's name in the text message list and each conversation is completely empty.
So I'm wondering 2 things:
1. Are there any apps that actually work for doing this right now with the Galaxy Note 4?
2. Can I manually extract my text messages? My phone is rooted. Here's the deal -- I'm flashing a new ROM and want to carry over my text message history. I would gladly do this manually if I knew how. I don't know where they're located or if this can be done.
Click to expand...
Click to collapse
Maybe you can backup via Titanium Backup or CWM
Sent from my Smartfren Andromax AD681H using XDA Free mobile app
lmills.117 said:
1. Are there any apps that actually work for doing this right now with the Galaxy Note 4?
2. Can I manually extract my text messages? My phone is rooted. Here's the deal -- I'm flashing a new ROM and want to carry over my text message history. I would gladly do this manually if I knew how. I don't know where they're located or if this can be done.
Click to expand...
Click to collapse
My Phone Explorer
http://www.fjsoft.at/
Backs up SMS text messages to PC and restores. Amazing app now also allows PC to view and control your Note 4.
Also look at the Samsung Smart Switch Mobile app.
Cheers
Tom
My Note 4 note for you.
Easy backup and restore from play store
Sent from my SM-N910T using XDA Free mobile app
TRT THIS 1
http://forum.xda-developers.com/showthread.php?t=2988846
I accidentally DELETED my messages. Unfortunately I wasn't able to back up my SMS prior to the incident. Is there any safe way to retrieve my SMS messages without rooting the phone (android version 5.0.1)?
Will appreciate any help. TIA.
connect your mobile to computer with samsung kies which can help u to backup info in it
I know this thread is too old , but who use kies !!!!! Note 4 dont use it
Use smart switch , there app for phone and for pc for backup or switching devices
Will the Samsung switch work restoring backed up messages (from stock rom) to a custom ROM (not TouchWiz based)?
yyumart said:
SMS Backup and Restore, free from the Play Store
Click to expand...
Click to collapse
Same here.
I do 27000 sms backup/restores after each wipe. The only problem - process is slow.
But maybe it's due the number of sms messages.
sharonsl said:
My favorite app is TunesBro Android Manager. you can only backup selected messages. In most cases, people only need to backup the messages he/she cares about.
For more details, here is a step-by-step guide: How to backup android sms to pc
Click to expand...
Click to collapse
I will prefer to Android Assistant App, which has the feature of one click backup and restore, very convinient.
For backup the text messages for Android , you can sync your account with Facebook then log in Facebook to the Android phone , you can copy these messages that you need to backup , after you copying is completed , you can withdraw from your phone, then login into your computer with the same Facebook account , then export data on your computer for backup , the text messages backup program is completely ,
For recover messages for Android , you can extract these deleted data form backup on computer ,
Is there an app that can compatible with data recovery and backup for Android ?
I use gosmspro for messages,it has it's own backup feature which can also be used to schedule a backup.

Backup apps and data

Hi,
I need to backup my apps and data,contacts and messages. I used to backup with GO Backup, and it worked flawlessly up to android 4.4, but now on LP and M I can not use it anymore. It was very simple and as soon as I restored my backups everything was back to normal (I didn't even need to login or register again in apps like instagram or whatsapp...). Now I use Titanium, but after restoring backups, I should login to every app, which is troublesome and it can not backup contacts and messages.
I was wondering what app you use with LP or M for backups, and if it is as simple and effective as GO Backup ?
ehsan_zt said:
Hi,
I need to backup my apps and data,contacts and messages. I used to backup with GO Backup, and it worked flawlessly up to android 4.4, but now on LP and M I can not use it anymore. It was very simple and as soon as I restored my backups everything was back to normal (I didn't even need to login or register again in apps like instagram or whatsapp...). Now I use Titanium, but after restoring backups, I should login to every app, which is troublesome and it can not backup contacts and messages.
I was wondering what app you use with LP or M for backups, and if it is as simple and effective as GO Backup ?
Click to expand...
Click to collapse
update your go backup which support lp and mm rom..
Try super backup..you should be rooted to backup data,for apps no need root
saurabh1234 said:
update your go backup which support lp and mm rom..
Click to expand...
Click to collapse
I have the last version, I think it's 3.51. It can not backup apps and data, I've given go backup root permissions, but when it starts, an error is being shown, saying that go backup can not read or write sd card. do you know anyway around it ?
sarath67 said:
Try super backup..you should be rooted to backup data,for apps no need root
Click to expand...
Click to collapse
thanks I will give it a try:good:
ehsan_zt said:
I have the last version, I think it's 3.51. It can not backup apps and data, I've given go backup root permissions, but when it starts, an error is being shown, saying that go backup can not read or write sd card. do you know anyway around it ?
Click to expand...
Click to collapse
change the storage location to internal bcoz in miui lp sdcard can be write only with default explorer
Contacts & Messages backing up possible with Titanium backup .. For contact's backup go to Titanium backup > contact storage ... Do Same for messages..
Easiest way to Backup contacts is google
ehsan_zt said:
Hi,
I need to backup my apps and data,contacts and messages. I used to backup with GO Backup, and it worked flawlessly up to android 4.4, but now on LP and M I can not use it anymore. It was very simple and as soon as I restored my backups everything was back to normal (I didn't even need to login or register again in apps like instagram or whatsapp...). Now I use Titanium, but after restoring backups, I should login to every app, which is troublesome and it can not backup contacts and messages.
I was wondering what app you use with LP or M for backups, and if it is as simple and effective as GO Backup ?
Click to expand...
Click to collapse
Use titanium backup latest version.. It's the best

Best way to fully backup everything (including SMS)

I haven't clean wiped my phone since taking delivery (March 2016) I'm rooted and have flashed every update up to N4F26J but I'v noticed a drop in battery even running the same kernel. I'd like to factory reset things then just restore apps and SMS. What is the best method to accomplish this? Previously I'd use SS Backup&Restore along with a Titanium Backup but that was a different device and different Andriod version, is there anything more efficient?
Thank you!
Thats what i do. Sms backup & restore by carbonite and titanium backup. Its pretty easy if you have the pro version of TB.
I use Titanium for user Apps and SMS...
g cloud is good if you dont know tit backup. tit backs up everything perfectly if you know how. for sms change your sms app in settings to titanium backup then go in titanium and back up (messages sms&mms) it'll be in yellow text. then you have to go back to your default sms app screen and change it back to hangouts, messenger or whatever you use. then in titanium backup find in settings create update.zip . as long as you dont wipe internal storage youll have your backups.
when restoring a backup change sms app default to [titanium backup] as your default messaging app. then go to in to tit backup and restore the generic looking yellow entry that says [Messages
(sms&mms)] what till its finished restoring. then just change the default messaging app back to hangouts or whatever you use.
you dont back up an sms app like messenger or hangouts because the sms are only read by those apps. their stored in (messages sms&mms) its a location in your phone.
dontbeweakvato said:
g cloud is good if you dont know tit backup. tit backs up everything perfectly if you know how. for sms change your sms app in settings to titanium backup then go in titanium and back up (messages sms&mms) it'll be in yellow text. then you have to go back to your default sms app screen and change it back to hangouts, messenger or whatever you use. then in titanium backup find in settings create update.zip . as long as you dont wipe internal storage youll have your backups.
when restoring a backup change sms app default to [titanium backup] as your default messaging app. then go to in to tit backup and restore the generic looking yellow entry that says [Messages
(sms&mms)] what till its finished restoring. then just change the default messaging app back to hangouts or whatever you use.
you dont back up an sms app like messenger or hangouts because the sms are only read by those apps. their stored in (messages sms&mms) its a location in your phone.
Click to expand...
Click to collapse
Thats nuts. Ive seen where TB showed up as an sms app but never knew why. I'll definitely switch.

Question Random Reboots, Software Reset didn't help

I've been using nothing phone 1 from almost last 4 months and from update of Nothing OS 1.1.7 the UI sometimes becomes unresponsive and phone automatically reboots.. Was using applications from outside app store but none of them affected my previous phone ( Oneplus 7 )..
After the software reset, I've been using application from play store. Still the problem persists. I've pulled up logs to identify the cause. . Can anyone help ???
ShaggyBoi said:
I've been using nothing phone 1 from almost last 4 months and from update of Nothing OS 1.1.7 the UI sometimes becomes unresponsive and phone automatically reboots.. Was using applications from outside app store but none of them affected my previous phone ( Oneplus 7 )..
After the software reset, I've been using application from play store. Still the problem persists. I've pulled up logs to identify the cause. . Can anyone help ???
Click to expand...
Click to collapse
If after your factory reset you have reinstall your apps and above all restore your backup from a cloud backup ou have high chance to have restore also apps/settings causing your crash system.
Make a manual backup :
- SMS/MMS/Call Log with SMS Backup & Restore
- Your personnal files (DCIM/Pictures, Downloads, etc...)
- Your Social Apps (WhatsApp, Signal, Etc...)
Your problem can be also caused if you are Root and using bad/incompatible Magisk Modules.
For a true test you must do a full factory reset with formatting data, and test your device without restore any backup could contains system settings (from Google Drive/Cloud or from a Root app like Swift Backup) and without any MagiskModule (if you are root).
You can log your Google Account but don't restore your backup or just your Contacts.
After that install manually your apps from PlayStore, not from backup.
You can restore your local backup :
- SMS/MMS/Call Log with SMS Backup & Restore
- Your personnal files (DCIM/Pictures, Downloads, etc...)
- Your Social Apps (WhatsApp, Signal, Etc...)

Categories

Resources