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