如何在Meteor中添加info.plist文件中的条目? 是否有移动配置设置或类似设置? 优步文档有一个示例,说明为什么要添加条目: https://developer.uber.com/docs/deep-linking 我没有使用过Meteor,但您可
是否有移动配置设置或类似设置?
优步文档有一个示例,说明为什么要添加条目:
https://developer.uber.com/docs/deep-linking
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>
