Can I delete the app but save my progress?

I can't seem to download more than one Telltale app, so I want to delete The Walking Dead app to free space for another one. However, I want to save the choices I made, so I can later continue the story. How can I do this?


Without considering your particular game, I can provide some general guidance towards solving this problem: As far as saved local game data is concerned, you will have to keep track of this data yourself for most games (they do not automatically backup the data to the cloud). Thus, in general, the process would be:

  • Find out where the game stores the data. This answer provides some good starting points. If it is inside of the application data folder with the permissions of that application, you may have to obtain root permission for the android device. Instructions on how to do this are device-specific.
  • Copy the data to a custom location, such as a subfolder in your documents or download folder.
  • To restore your saved game, copy the data back.

An alternative way of doing this, without having to obtain root access to the android device, is to use USB debugging tools. You can do this manually by activating them using the hidden developer switch in the settings menu, then attaching a computer to the android device and transferring the files as in the previous process over an ADB connection.

A third method is to use an app that does the synchronization for you. An example such application is Helium.

Note that both the ADB method and the 3rd-party app method require the developer of the original game to allow debug access to its files. Unless the developer is particularly paranoid, most will not have disabled this (it's allowed by default). E.g. a banking app might disable this though, so these methods are not 100% guaranteed to work.