我是手机新手。
使用phonegap app我创建了新项目。
现在我喜欢在xcode(7.2.1)中使用这个项目吗?
在各种插件的phonegap中开发应用程序的最佳方法是什么,我用Google搜索并听说了coredova,但无法理解确切需要。
答案 0 :(得分:1)
对于IOS请尝试添加任何新插件。
转到Created Project Directory
中的Mac CLI
。
Then do this.
If you haven't added IOS Platform then run below command
。
cordova platform add ios
Then build your whole project with below command.
cordova prepare ios
Then to add plugin run below command.
cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-device.git
此处采取您要安装的任何插件。
确保在安装插件时与互联网连接。
答案 1 :(得分:0)
是可能的现在我想在xCode(7.2.1)中使用这个项目是否可能?*
在各种插件的phonegap中开发app的最佳方法是什么
我假设你在问如何添加不同的插件?
转到存储PG构建文件的www
文件夹并查找config.xml,然后您将看到一个已存在几个插件的部分。您可以通过简单地复制和粘贴以下XML语法(电池状态插件)来添加其他语法,例如:
<plugin name="cordova-plugin-battery-status" spec="1.1.0" source="pgb" />
参考这篇文章以获取PhoneGap插件的完整列表: https://build.phonegap.com/plugins
或者,您可以通过命令行界面添加它们(请参阅问题的第一个答案)