10
  • I've setup apache cordova on my Windows/Cygwin platform.
  • I can create project using the command - cordova create <app_name>.
  • I have added android platform using the command - cordova platform add android
  • I can run the sample 'html/css/js' using cordova ripple android.
  • I can upload the project to build.phonegap and get the .apk file.
  • I know from docs that I can setup eclipse and do the build. (I'm not looking for this)

  • But I cannot create .apk file using the command cordova build android. When I run the command, there is not output on the command line, the command just finishes. I cannot locate the .apk file.

Is there a way in which I can create an .apk file from command line? (Looking for suggestions for other platforms as well)

Thanks,

sowdri
  • 1,933
  • 4
  • 19
  • 31
  • Found this link which seems relevant: http://wiki.apache.org/cordova/CommandLineToolingDesign. Short answer,in my opinion, the entire HTML5 app stack is still under heavy dev. Expect a bumpy ride. – demaniak Aug 06 '13 at 20:50

4 Answers4

12

You should get a more verbose output by running cordova -d build android.

Alternatively, to use the underlying cordova-android scripts to build, you can:

cd platforms/android
./cordova/build

OR, to peel away even more layers, you can use the Android ANT script to run the build (which is what the cordova scripts shell out to anyways):

cd platforms/android
ant debug
fil maj
  • 2,240
  • 16
  • 15
4

For Android the default location for the APKs is the bin directory

The location is defined by ant properties in the Android SDK buil.xml

<import file="${sdk.dir}/tools/ant/build.xml" />

The output apk will be in two formats debug or release

<property name="out.final.file" location="${out.absolute.dir}/${ant.project.name}-debug.apk" />
<property name="out.final.file" location="${out.absolute.dir}/${ant.project.name}-release.apk" />

The location of your apk will be something like this:

  • myAndroidApp/bin/myAndroidApp-debug.apk
  • myAndroidApp/bin/myAndroidApp-release.apk
csantanapr
  • 4,902
  • 2
  • 17
  • 15
3

Use cordova compile android

This will output a debug .apk file into platforms/android/bin

This works with Cordova 3.3.1

Ade
  • 2,820
  • 3
  • 27
  • 45
  • IT WORKS But you have to add to local variables a VARIABLE named "ANDROID_HOME" with destination in the Android SDK. I recommend this link =) https://ccoenraets.github.io/cordova-tutorial/create-cordova-project.html – Mike Brian Olivera Jul 03 '15 at 04:10
0

I was using ant 1.7 which was causing the problem. There was no error message mentioning the version. After changing to Ant 1.8.xx, phonegap was able to install and build the android project.

skc
  • 1