JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser .
Is it possible to restore a single app and its data from a Nandroid backup? I need to recover the database that goes with a gas mileage program (
Mileage - Android app on AppBrain ) from a Nandroid backup that was done before a phone wipe. Any suggestions?
Space Cowboy
Staff member
Three ways I can think of:
Copy the img files to a Linux machine and mount them as a loopback device, then pull the data files you want
Backup again, restore the old backup, pull the data files using adb
Backup again, resotre the old backup and use titanium to back up your app, restore again and use ti backup to restore the data for the app.
#1 takes the least amount of time, but is pretty specialized.
#3 is probably the easiest.
I went with option 3, then just did an export to a csv from within the app and restored. Thanks.