diff options
| author | Alberto-Duarte <alberto@albertoduarte.com> | 2023-05-11 11:40:35 +0100 |
|---|---|---|
| committer | Alberto-Duarte <alberto@albertoduarte.com> | 2023-05-11 11:40:35 +0100 |
| commit | 6ff7c459e3d08ebdf6da6973ebe0410b5cab9c0a (patch) | |
| tree | cc54b937a9c854c3f2bd27960a2e3234fce3f355 /ios/reactnativeapp/main.m | |
first commit
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])); + } +} |