Skip to content Skip to sidebar Skip to footer

How To Make .apk File

Possible Duplicate: How to build .apk file? Please guide how to make .apk file . I have a knowledge that it is in bin directory and before it was working fine . Now when my appl

Solution 1:

If you're using Eclipse, right-click on the project in Package Explorer, then under "Android Tools" choose "Export signed application package". There will be some UI regarding signing key generation/choice, you'll get a chance to provide file name, and then you'll get your APK where you want it.

If you're not using Eclipse, why not?

Solution 2:

If Eclipse isn't building a valid .apk file, try fixing the project properties. In the Package Explorer, right click on the project name, then select Android Tools > Fix Project Properties.

Be aware that the .apk file generated in the bin/ directory is signed by a built-in debug signing certificate. This is okay for use in the emulator or in a device dedicated to testing, but for production use, you should sign the .apk with your own certificate. You do this by exporting the .apk as described by Seva. See the guide topic on this subject for details.

Post a Comment for "How To Make .apk File"