iOS SDK
Setting up the Conscent.ai SDK (Loyalty Platform) in your Xcode project
Last updated
import BluePine
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions:
[UIApplication.LaunchOptionsKey: Any]?) -> Bool {
...
BluePine.setPartnerIdAndUserId(partnerId: "<partner_id>",
userId: "<user_id>")
BluePine.startBluePine()
...
} ... }