Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Xcode application with a base SDK of iOS 9 10 and above.
  • Xcode application with a deployment target of iOS 7 8 and above.
  • An account on the Appoxee dashboard with a configured application.

...

Code Block
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    
    Appoxee.shared()?.engageWithLaunchOptions(launchOptions, andDelegate: nil, andSDKID: "123456789.00")
    
    return true
}
Info
titleAppoxeeConfiguration.plist
Attention! you will still need to define AppoxeeConfiguration.plist file, if you need to configure your applications environment

 

6. Add the following implementation to the method named: application:didRegisterForRemoteNotificationsWithDeviceToken:

...