How to Export an APK file using Eclipse?

蹲街弑〆低调 提交于 2019-11-28 02:14:12

问题


There are two ways to export Application Package in Eclipse using Android Tools -

  1. Export Unsigned Application Package
  2. Export Signed Application Package

回答1:


Steps of generating an APK file using Eclipse -

  • Go to File > Export

  • From the Export window, go to Android > Export Android Application.

  • Click Browse... and select the Android Application project to Export.

  • Click Browse and select the debug.keystore. The default location for debug.key store on OSX is "/Users//.android/debug.keystore" and the password is "android". When you're ready to release your app to an application marketplace, you should use an existing keystore or create a new keystore.

  • Select the "androiddebugkey" alias and use "android" as the password.

  • Select a destination for the APK file and click Finish.

  • Now you are ready to upload and distribute the APK.

Source - Test flight



来源:https://stackoverflow.com/questions/23755447/how-to-export-an-apk-file-using-eclipse

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!