This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "UAirship.h" | |
#import "UAPush.h" | |
============================ | |
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { | |
[self setupUrbanAirshipForApplication:application withLaunchOptions:launchOptions]; | |
return YES; | |
} | |
- (void)applicationWillTerminate:(UIApplication *)application { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
/* NOTE: DO NOT USE THE MASTER SECRET */ | |
"APP_STORE_OR_AD_HOC_BUILD" = NO; /* set to YES for production builds */ | |
"DEVELOPMENT_APP_KEY" = "Your development app key"; | |
"DEVELOPMENT_APP_SECRET" = "Your development app secret"; | |
"PRODUCTION_APP_KEY" = "Your production app key"; | |
"PRODUCTION_APP_SECRET" = "Your production app secret"; | |
} |