Andreas Fahrecker 7d6f83c1e0 Initial commit after flutter create
Signed-off-by: Andreas Fahrecker <AndreasFahrecker@gmail.com>
2020-10-08 08:55:00 +02:00

14 lines
422 B
Objective-C

#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