我正在为iOS和Android构建移动应用,并将其配置为使用phonegap。我为每个平台配备了一个测试设备,都通过USB插入。由于iOS是默认平台,因此部署到iPhone非常简单。但是我很难找到如何使用" sencha app build native"来构建和部署android。命令。那里的指南似乎不准确或只是为了日食。
谢谢!
答案 0 :(得分:0)
如果您使用的是Cordova integration with Sencha Cmd,那么您的项目应该在根文件夹中有一个cordova.build.properties
文件。在里面你会发现:
# Documentation can be found here (http://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-line%20Interface)
#
# The following combination are supported as of publishing this file
# ios android blackberry10 wp7 wp8
#
# This property can be a single platform or a space delimited list
cordova.platforms=ios
您可以在此处更改构建环境。
然后运行sencha app build native
将为相应的平台编译应用程序。