baumi's blog

baumi's personal blog … Linux, OS X, Windows, Random things, …

August, 2015

ATTENTION: Android Backup (adb) not working properly on Googles own Nexus5 phone: better look for something else!

I’ve had two full backups of my nexus 5. i did a small script, which looks like this: #!/bin/bash fname=nexus5_backupdata_$(date +”%Y-%m-%d_%H%M”).ab echo “Creating backup file $fname …” ~/Library/Android/sdk/platform-tools/adb backup -apk -shared -all -f ~/$fname to restore, i did: #!/bin/bash ~/Library/Android/sdk/platform-tools/adb restore ~/nexus5_backupdata_2015-08-11_1614.ab so, what happened? most of my apps are restored, a few are missing, […]