1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-09 06:18:49 +00:00
Files
samples/shrine/ios/Runner/AppDelegate.m
Andrew Brogdon 434a703725 Adding shrine. (#3)
Adds a new version of Shrine from the MDC codelabs.
2018-07-26 15:27:26 -07:00

14 lines
424 B
Objective-C

#include "AppDelegate.h"
#include "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