gpt4 book ai didi

cordova - PhoneGap Build 上的每个平台配置 (config.xml)

转载 作者:行者123 更新时间:2023-12-02 01:54:26 25 4
gpt4 key购买 nike

我有一个在 PhoneGap Build 上远程构建的 PhoneGap 3.1 应用程序。
在我的应用程序中,项目的根目录下有一个 config.xml 文件。该文件包含:

<preference name="orientation" value="default" />

但是我想在 iOS 中将方向限制为纵向模式。我随机尝试过:

<preference gap:platform="ios" name="orientation" value="portrait" />

<gap:platform name="ios">
<preference name="orientation" value="portrait" />
</gap:platform>

但这些似乎都不起作用。

如何为特定平台设置首选项?

最佳答案

有了 PGB,我们现在可以添加到 info.plist 文件中。所以在你的 config.xml 中放这个:

<gap:config-file platform="ios" parent="UISupportedInterfaceOrientations" overwrite="true">
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
</gap:config-file>

阅读更多内容并在此处查看具体示例: http://phonegap.com/blog/2014/01/30/customizing-your-android-manifest-and-ios-property-list-on-phonegap-build/

关于cordova - PhoneGap Build 上的每个平台配置 (config.xml),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20998325/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com