tags:

views:

57

answers:

1

Hi,,

how to get the apk file from android device ? or how to transfer the apk file from device to system .Please help me. Thanks in advance.

+2  A: 

Use adb. With adb pull you can copy files from your device to your system, when the device is attached with USB.

Of course you also need the right permissions to access the directory your file is in. If not, you will need to root the device first.

Maurits Rijk
THanks Maurits Rijk. Please assist me. I want to copy the iTwips.apk file from the device to system. I am using the following command. is it correct ? I got error "Android2.2Froyo/sdcard/iTwips.apk" does not exits... /Users/bbb/Android/android-sdk-mac_86/tools/adb pull Android2.2Froyo/sdcard/iTwips.apk /Users/bbbThanks is advance.......
Girija
On my device (Android 2.1) the command would be "adb pull /sdcard/test.jpg" to copy test.jpg from my sd card to the current dir. Please locate your iTwips.apk file first using "adb shell". This start a shell on your device and you can use the standard Unix commands like ls and cd to browse your directories.
Maurits Rijk
Hi, Actually the iTwips.apk stored in the internal memory on the device. how can I use the shell for this one? I am using the following command adp -d <devicenumber> shell .. But it does not work.. please assist me.. THanks in advance.
Girija
Hi, Thank u very much. I can get the images from sdcard now. but I want to pull the apk file from device (managementApplication folder). The iTwips apk is stored on the Application folder. Please assist me.
Girija
It is possible that you don't have permissions to read from that folder. In that case you will first need root access to your device. How to do this depends on the device you have. Google device type + root access and you will probably find lots of information.
Maurits Rijk