I am beginner in android. I am successfully created one application. In that application name is Hello. It's successfully running in My Emulator. My questions are How to convert that application to .apk files. Because how to i run this application(Hello) to my android tablet. If it is possible please send information for how to convert taht application to .apk format. Otherwise if it is not possible send Reason. Please reply your answers and comments are valuable me. Thanks.
-
Are you using Eclipse for developing the android? – Praveenkumar Jun 14 '12 at 13:44
-
1If your means, how to get the apk file of your android project, you can go to `
/ – Hossein Mobasher Jun 14 '12 at 13:49/bin/` and see the *.apk file. -
possible duplicate of [Android - Export a program to an apk file](http://stackoverflow.com/questions/6166149/android-export-a-program-to-an-apk-file) – Esailija Jun 14 '12 at 18:07
5 Answers
Simply try below existing answers -
Steps to Export an .apk
Right click your project -> Select Android tools -> Export Signed application package -> Next
Choose create new keystore -> set the new location using browse -> and give new name for key also
give the password & confirm the password also -> Next
Give alias name -> give new or old password & confirm the password also -> fill validity -> and below make one column to fill -> Next
set the .apk file's destination to existing location or new location -> Finish

- 1
- 1

- 24,084
- 23
- 95
- 173
from eclipse
refer link
http://www.jetbrains.com/idea/webhelp/exporting-a-signed-android-package.html
http://developer.android.com/guide/publishing/app-signing.html
On the main menu, choose Tools | Android | Export Signed Android Package. The Export Signed Android Package Wizard starts.
from command line :
even it is also important to know about signing
http://developer.android.com/guide/publishing/app-signing.html

- 15,643
- 3
- 38
- 36
Rightclick your project in Eclipse -> Export -> Android -> Export Android Application -> Next -> Create new keystore -> Enter infos -> Follow remaining steps

- 1,043
- 8
- 13
Actually if you don't want to publish your app for now,and just want to get it working on your phone, then you just have to copy the yourApp.apk file from /workspace/yourProject/bin directory to your sdcard and then install it.

- 26
- 2
Eclipse does that for you (if you are only looking ot test it on your device rather than actually create an .apk, which is what it sounds like you really want to do).
Simply plug in your device to your computer after you have installed the proper drivers for it and it should show up as a target if you go to Run -> Run Configurations, select your app and then click on the "Target" tab. Select the device and then you are set to run it on your device from Eclipse.

- 16,318
- 9
- 52
- 84