Summary:
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>
Details:
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 :
- Pushed a plus button;
- Searched a key name in the appeared list.
However, I cannot find the following keys.
- CFBundleURLSchemes
- CFBundleURLTypes
- FacebookAppID
- FacebookClientToken
I have already completed the forward steps in the instructions.
My environment:
- MacOS monterey v12.1
- Xcode Version 13.2.1 (13C100)
- SwiftUI