8

Possible Duplicate:
Where in the file system are applications installed?

Where is a downloaded .apk placed in Android phones? I want to backup the .apk files to my PC so that if something happens I will just restore the applications instead of re-downloading them from market.

I'm using a Samsung Galaxy S II.

Siva
  • 91
  • 1
  • 2
  • 4

2 Answers2

8

If you don't have root access, it doesn't matter because you won't be able to back them up.

If you do have root access, use an app like Titanium Backup to back up the apks.

Note:

This doesn't really answer the question of where to find the downloaded APKs, but it does address the need of the OP.

Nathan Fellman
  • 5,464
  • 19
  • 56
  • 78
3

They're (mainly) in /data/app. If you're rooted, you can also back them up to your computer via ADB:

adb pull /data/app/ C:\backup\

(Or similar command). To restore the easiest might be to copy them to your SD card, then go through them on your phone and install one by one.

Titanium is much better though, so listen to Nathan.

Matthew Read
  • 50,567
  • 30
  • 145
  • 273