Reputation: 1155
I wrote a small program in eclipse -android.Now i installed and i am running my program which is an .apk Now i want to know where my .apk file is there and i even want to "pull" it into my system. Is it possible? If so kindly help me.
Upvotes: 4
Views: 7204
Reputation: 22066
You can run project without make apk, just right click on project >> Run as >> android application.
But if you want to find apk, it is already in workspace/your project/bin/name.apk
Upvotes: 2
Reputation: 16120
Use File Explorer within Eclipse to see all the files and folders of your emulator.
Upvotes: 0
Reputation: 30855
Yes it is possible you can also get from the ddms window into the eclipse. In the ddms select the device from the device window at left side and at right side you getting the tabbed window File Explorer, logcat, console etc.
Select File Explorer->data->app
here you getting the list of all the apk files select it and pull it by using right to top button of this File Explorer window.
see this image
Upvotes: 1
Reputation: 1459
If you just want the apk to install on a phone or similar use File -> Export -> Android Application
Upvotes: 2
Reputation: 6323
Yes should be possible. Do a adb shell
and look under /data/apps (e.g. ls /data/apps). Once you know the filename you can do adb pull filename .
Upvotes: 2