14 lines
422 B
Mathematica
14 lines
422 B
Mathematica
|
#import "AppDelegate.h"
|
||
|
#import "GeneratedPluginRegistrant.h"
|
||
|
|
||
|
@implementation AppDelegate
|
||
|
|
||
|
- (BOOL)application:(UIApplication *)application
|
||
|
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
||
|
[GeneratedPluginRegistrant registerWithRegistry:self];
|
||
|
// Override point for customization after application launch.
|
||
|
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
||
|
}
|
||
|
|
||
|
@end
|