Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to move my GameBoy Advanced emulator from my android phone to my computer. I've looked for answers, but all seem to require internet access on your computer which I do not have. Help?

share|improve this question
2  
This is probably better asked on android.stackexchange.com – josh3736 Aug 11 '12 at 4:10
This is hardly a question for SO. This is not a question that concerns development. – IceMAN Aug 11 '12 at 5:26

closed as off topic by josh3736, Luksprog, ρяσѕρєя K, Tim, Sergey Glotov Oct 30 '12 at 10:15

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

  • run the avd
  • run this command adb shell ls /system/app/*.apk
  • locate the apk and download it with adb pull /system/app/fileName.apk .

shutdown the avd and connect your phone and use adb install fileName.apk to install it to your phone or just copy the apk to the phone.

share|improve this answer
If it's an app installed by the user, it will be located in /data/app. – Michael Hampton Aug 11 '12 at 5:33

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