19 08 2015
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, […]