Reputation: 51
I want to know how to add the following snippet to info.plist on Xcode13, when I cannot find the name of keys I want to add in the key name list.
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fbAPP-ID</string>
</array>
</dict>
</array>
<key>FacebookAppID</key>
<string>APP-ID</string>
<key>FacebookClientToken</key>
<string>CLIENT-TOKEN</string>
<key>FacebookDisplayName</key>
<string>APP-NAME</string>
I am working to integrate FACEBOOK login API to my application written in SwiftUI. However, under the meta developer instructions, we need to add the code in info.plist. As usual, on Custom IOS target properties pane (projectname -> target -> info -> Custom IOS target properties), I tried to add the key by the following way :
However, I cannot find the following keys.
I have already completed the forward steps in the instructions.
My environment:
Upvotes: 3
Views: 722
Reputation: 257693
Search is just for tips, you can add any key you want by copy-paste:
*btw, URL types are added in section below URL Types:
Upvotes: 2