November 2017
Beginner to intermediate
288 pages
7h 33m
English
Before we actually start implementing the functionalities, please go and edit your Podfile and paste in the following entry:
pod 'FBSDKCoreKit' pod 'FBSDKLoginKit' pod 'Firebase/Auth'
Now save, and then in your favorite terminal of choice, type the following command:
~> pod install
This command will download the needed dependency and its dependencies, and configure your project accordingly. After that, in your project finder, open the .xcworkspace version of your project; it's the version that comes bundled with the new dependencies and changes.
Now, open your project with info.plist as the source code, and add the following lines just before last </dict> markup closing:
<key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleURLSchemes</key> ...
Read now
Unlock full access