diff options
Diffstat (limited to 'ios/app/main.m')
-rw-r--r-- | ios/app/main.m | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ios/app/main.m b/ios/app/main.m new file mode 100644 index 0000000000..954584f141 --- /dev/null +++ b/ios/app/main.m @@ -0,0 +1,10 @@ +#import <UIKit/UIKit.h> + +#import "MBXAppDelegate.h" + +int main(int argc, char * argv[]) +{ + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([MBXAppDelegate class])); + } +} |