0

Good day! I use VS 2015+Apache Cordova. I make simple app and want to get apk of this. But, when i build peoject- i have not any *apk file at /bin/Android.

I can run my app at Ripple emulator.

Can you help me?

Admiral Land
  • 2,304
  • 7
  • 43
  • 81

2 Answers2

2

you can use this online tool by simply uploading your www directory

https://build.phonegap.com/

if you want to build it locally use Phonegap CLI use the following command

>phonegap local build android
[phonegap] adding the Android platform...
[phonegap] compiling Android...
[phonegap] successfully compiled Android app

Here is a tutorial how to build it

https://www.youtube.com/watch?v=xde05OoqWag

Askarc Ali
  • 318
  • 4
  • 21
2

All you need to do is build for device rather than ripple, then you'll see the .apk in the bin and platforms directory.

Just select this from the targets drop down:

enter image description here

And then select "show all files" in the solution explorer and search for .apk:

enter image description here

Hope that helps.

Michael Braude
  • 6,913
  • 1
  • 22
  • 20