How can I copy a file from some Android app's assets folder, to somewhere off the device?

Alternatively, how can I move or copy an app so that it is installed on the sd card, not the main rom?

Peter

link|improve this question

feedback

3 Answers

Easiest way is to learn about the adb push and pull commands: adb

link|improve this answer
I am familiar with the use of adb commands. However, adb does not allow an app to be retrieved this way:. Apparently it lacks permission to read the directory. I can push an adb shell and cd to the directory (so it exists), but not use adb to push or pull files from it. Does anyone have anything that works? – Peter vdL Aug 22 '10 at 22:45
feedback
up vote 0 down vote accepted

I do not believe there is any straightforward way to copy a file out of an installed app's asset folder without either rooting the device, or the cooperation of the app itself.

link|improve this answer
feedback

As well, files can be copied using DDMS

link|improve this answer
Alas, DDMS does not work either. It does not permit the programmer to browse the /data directory (which is where apps live), on my phone. – Peter vdL Aug 22 '10 at 22:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.