Before you run the project:
Remeber to:
- Run CocoaPods in Terminal with the command
pod install
- Change the
AppDelegate.swift
file with your ownappKey
andappSecret
, for example:
Kinvey.sharedClient.initialize(appKey: "my app key", appSecret: "my app secret")
- Change the
AppDelegate.swift
andInfo.plist
files with your own value forredirectURI
andURL Schemes
, for example:
AppDelegate.swift
let redirectURI = URL(string: "myCustomURL://")!
Info.plist
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>myCustomURL</string>
</array>
</dict>
</array>