diff options
Diffstat (limited to 'ios/Runner/AppDelegate.m')
| -rwxr-xr-x | ios/Runner/AppDelegate.m | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ios/Runner/AppDelegate.m b/ios/Runner/AppDelegate.m new file mode 100755 index 0000000..70e8393 --- /dev/null +++ b/ios/Runner/AppDelegate.m @@ -0,0 +1,13 @@ +#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 |