Info.plist中缺少iOS 9“fbauth2” [英] iOS 9 “fbauth2” missing from Info.plist

查看:142
本文介绍了Info.plist中缺少iOS 9“fbauth2”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

FBSDKLog: fbauth2 is missing from your Info.plist under LSApplicationQueriesSchemes and is required for iOS 9.0

知道这是什么意思吗?我已将它添加到我的plist中但无法正常工作。

Any idea what this is? I have added it in my plist but did not work.

推荐答案

您可以在构建应用时继续使用URL方案iOS 9并且您想调用URL方案,现在需要在应用程序Info.plist中声明它们。有一个新密钥 LSApplicationQueriesSchemes ,在这里你需要添加你想要的方案列表canOpenURL。

You can continue to use URL schemes when you build your app for iOS 9 and you want to call URL schemes, you will now need to declare them in your apps Info.plist. There is a new key, LSApplicationQueriesSchemes, and here you will need to add the list of schemes you want to are canOpenURL on.

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>fbauth2</string>
</array>

这篇关于Info.plist中缺少iOS 9“fbauth2”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆