How to build apache cordova project from command line?

前端 未结 4 754
时光取名叫无心
时光取名叫无心 2021-02-14 07:23
  • I\'ve setup apache cordova on my Windows/Cygwin platform.
  • I can create project using the command - cordova create .
  • I have
4条回答
  •  独厮守ぢ
    2021-02-14 08:11

    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

    
    

    The output apk will be in two formats debug or release

    
    
    

    The location of your apk will be something like this:

    • myAndroidApp/bin/myAndroidApp-debug.apk
    • myAndroidApp/bin/myAndroidApp-release.apk

提交回复
热议问题