summaryrefslogtreecommitdiff
path: root/src/react-native-app/ios/reactnativeapp/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'src/react-native-app/ios/reactnativeapp/main.m')
-rw-r--r--src/react-native-app/ios/reactnativeapp/main.m10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/react-native-app/ios/reactnativeapp/main.m b/src/react-native-app/ios/reactnativeapp/main.m
new file mode 100644
index 0000000..25181b6
--- /dev/null
+++ b/src/react-native-app/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]));
+ }
+}
+