我有下一个问题,我必须将 NSAppTransportSecurity key 添加到我的 info.plist 文件中。
因为我有许多不同的 config.xml 用于测试、开发和生产服务器,所以手动将 NSAppTransportSecurity key 添加到 plist 是不好的。
这可以在 config.xml 本身内部完成吗?
我试过这个:
<manifest device="ios" tag="plist/dict">
<key>CFBundleURLTypes</key>
<array>
<dict>
...
</dict>
</array>
<!--Here is my own:-->
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
</manifest>
但是在 cordova 构建 iOS 之后,我在 info.plist 中得到了这个:
<key>[object Object]</key>
<string>NSAppTransportSecurity</string>
但是 CFBundleURLTypes 可以正常移植。我做错了什么?
Best Answer-推荐答案 strong>
您可以使用 cordova-custom-config插件来实现这一点:
$ cordova plugin add cordova-custom-config
然后添加到config.xml:
<platform name="ios">
<config-file platform="ios" target="*-Info.plist" parent="NSAppTransportSecurity">
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
</config-file>
</platform>
关于ios - Phonegap 为 NSAppTransportSecurity 修改 config.xml,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/37851261/
|