当前位置 : 主页 > 手机开发 > cordova >

cordova – 在Meteor中添加info.plist条目?

来源:互联网 收集:自由互联 发布时间:2021-06-10
如何在Meteor中添加info.plist文件中的条目? 是否有移动配置设置或类似设置? 优步文档有一个示例,说明为什么要添加条目: https://developer.uber.com/docs/deep-linking 我没有使用过Meteor,但您可
如何在Meteor中添加info.plist文件中的条目?

是否有移动配置设置或类似设置?

优步文档有一个示例,说明为什么要添加条目:
https://developer.uber.com/docs/deep-linking

我没有使用过Meteor,但您可以使用 cordova-custom-config插件在project / cordova-build-override / config.xml中定义自定义配置(参见 Meteor Advanced Build Customization)并在构建时将其应用于平台配置:

meteor add cordova:cordova-custom-config

config.xml文件:

<platform name="ios">
    <config-file platform="ios" target="*-Info.plist" parent="LSApplicationQueriesSchemes">
        <array>
          <string>uber</string>
        </array>
    </config-file>
</platform>
网友评论