0

I just installed Phonegap and created the app through the terminal (command line), everything works fine. It compiled the code and exported it to my smartphone, that was connected to PC.

The problem is, where PhoneGap storage the APK file after use the command "phonegap run android" or "phonegap compile android"?

euDennis
  • 327
  • 2
  • 7
  • 16

2 Answers2

2

I just founded that is inside app folder:

/--app folder--/platform/android/bin/~

thanks for the help

euDennis
  • 327
  • 2
  • 7
  • 16
1

Try this step if u r using eclipse

Right Click on the Project -> Android Tools ->Export Unsigned Application Package

to release from the command line: http://developer.android.com/tools/building/building-cmdline.html#ReleaseMode

to sign the .apk file, if you need to do :

http://developer.android.com/tools/publishing/app-signing.html

jstn
  • 504
  • 4
  • 14