MPM SDKインストール
Last updated
#import <IMQAMPMAgent/IMQAMPMAgent.h>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
NSString* PROJECT_KEY = @"<PROJECT_KEY>";
IMQAConfig* mpmConfig = [[IMQAConfig alloc] init:PROJECT_KEY];
[[IMQAMpm sharedInstance] runWithConfig:mpmConfig];
return YES;
}import IMQAMPMAgentfunc application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
let PROJECT_KEY = ""
let mpmConfig = IMQAConfig(PROJECT_KEY)
IMQAMpm.sharedInstance.run(config: mpmConfig)
return true
}