如何在 config.xml 中配置插件 "cordova-plugin-screen-orientation"
How to configure plugin "cordova-plugin-screen-orientation" in config.xml
cordova plugin add cordova-plugin-screen-orientation
在我使用上面的行获取插件 cordova-plugin-screen-orientation 之后,我查看了 config.xml 并且找不到类似的行下面是插件。
<gap:plugin name="org.apache.cordova.media-capture" />
我已经试过了
- 猜测插件id/name(PhoneGap Build 一直说插件不受支持):
<gap:plugin name="org.apache.cordova.screen-orientation" />
<gap:plugin name="cordova-plugin-screen-orientation" />
最后一行是插件 plugin.xml.
中的插件 id/name
在以下网站上找到插件 id/name:
- 通过在 the repository of the plugin 提出问题来获得帮助(问题已被删除,所以我删除了问题的 link)
- 在 Whosebug 和 google 上搜索:
- 配置插件 phonegap
- 正在向 phonegap 添加插件
- 添加src="npm":
<gap:plugin name="cordova-plugin-screen-orientation" src="npm" />`
谁能告诉我插件 id/name 或如何在 config.xml 中配置插件?
解决方案是将 src="npm"
替换为 source="npm"
。
<gap:plugin name="cordova-plugin-screen-orientation" source="npm" version="1.4.0" />
感谢 https://github.com/bau720123 为我在 GitHub 上创建的问题提供了解决方案。问题已删除,因此我无法 post 对其进行 link。
有关如何在 config.xml 中配置插件的更多信息,请访问此处:
http://docs.phonegap.com/phonegap-build/configuring/plugins/
cordova plugin add cordova-plugin-screen-orientation
在我使用上面的行获取插件 cordova-plugin-screen-orientation 之后,我查看了 config.xml 并且找不到类似的行下面是插件。
<gap:plugin name="org.apache.cordova.media-capture" />
我已经试过了
- 猜测插件id/name(PhoneGap Build 一直说插件不受支持):
<gap:plugin name="org.apache.cordova.screen-orientation" />
<gap:plugin name="cordova-plugin-screen-orientation" />
最后一行是插件 plugin.xml.
中的插件 id/name在以下网站上找到插件 id/name:
- 通过在 the repository of the plugin 提出问题来获得帮助(问题已被删除,所以我删除了问题的 link)
- 在 Whosebug 和 google 上搜索:
- 配置插件 phonegap
- 正在向 phonegap 添加插件
- 添加src="npm":
<gap:plugin name="cordova-plugin-screen-orientation" src="npm" />`
谁能告诉我插件 id/name 或如何在 config.xml 中配置插件?
解决方案是将 src="npm"
替换为 source="npm"
。
<gap:plugin name="cordova-plugin-screen-orientation" source="npm" version="1.4.0" />
感谢 https://github.com/bau720123 为我在 GitHub 上创建的问题提供了解决方案。问题已删除,因此我无法 post 对其进行 link。
有关如何在 config.xml 中配置插件的更多信息,请访问此处: http://docs.phonegap.com/phonegap-build/configuring/plugins/