Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@xtremepush-gists
Created January 15, 2018 09:19
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 xtremepush-gists/7ee2f6f86486250d1735aa3acabad860 to your computer and use it in GitHub Desktop.
Save xtremepush-gists/7ee2f6f86486250d1735aa3acabad860 to your computer and use it in GitHub Desktop.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[XPush setAppKey: @"APP_KEY_FROM_THE_DASHBOARD"];
[XPush registerForRemoteNotificationTypes:XPNotificationType_Alert |
XPNotificationType_Sound | XPNotificationType_Badge];
#if DEBUG
[XPush setSandboxModeEnabled:YES];
#endif
[XPush applicationDidFinishLaunchingWithOptions:launchOptions];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment