Skip to content

Instantly share code, notes, and snippets.

@cardoso
Last active July 6, 2020 23:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cardoso/a709dcd735758686386bc6feeb33acc2 to your computer and use it in GitHub Desktop.
Save cardoso/a709dcd735758686386bc6feeb33acc2 to your computer and use it in GitHub Desktop.
import UIKit
import StreamChatClient
import VoxeetSDK
import VoxeetUXKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
...
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
Client.configureShared(.init(apiKey: "7[redacted]2", logOptions: .info))
VoxeetSDK.shared.initialize(consumerKey: "ZTB[redacted]mt0aA==", consumerSecret: "ND[redacted]ZH[redacted]c[redacted]=")
VoxeetUXKit.shared.initialize()
return true
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment