/
Option 1 - Automated Integration for Appoxee Standalone
Option 1 - Automated Integration for Appoxee Standalone
1. Add import statement
Objective-C
Open your AppDelegate.m file, and add the following import statement:
#import <AppoxeeSDK/AppoxeeSDK.h>
Swift
Add to your Objective-C bridging header the following import statement
#import <AppoxeeSDK/AppoxeeSDK.h>
2.Add the following implementation to the method named: application:didFinishLaunchingWithOptions:
Objective-C
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Method takes into consideration a valid AppoxeeConfig.plist file in your application.
[[Appoxee shared] engageAndAutoIntegrateWithLaunchOptions:launchOptions andDelegate:nil];
return YES;
}
Swift
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Method takes into consideration a valid AppoxeeConfig.plist file in your application.
Appoxee.shared()?.engageAndAutoIntegrateWithLaunchOptions(launchOptions, andDelegate: nil)
return true
}
, multiple selections available,
Related content
Mapp Cloud Mobile Integration
Mapp Cloud Mobile Integration
More like this
React Native Integration for Mapp Cloud
React Native Integration for Mapp Cloud
More like this
SDK - Common Use Cases
SDK - Common Use Cases
More like this
Android Application Setup for Mapp Cloud
Android Application Setup for Mapp Cloud
More like this
Mapp Cloud iOS SDK Documentation
Mapp Cloud iOS SDK Documentation
More like this
SDK FAQ's
SDK FAQ's
More like this