alerte-secours/app/ios/AlerteSecours/main.m
devthejo 3e56818c1d chore(to-monorepo): import as-app repo into app
git-subtree-dir: app
git-subtree-mainline: b28b08a80b
git-subtree-split: a6c3dc2641
2026-03-09 08:54:57 +01:00

12 lines
414 B
Objective-C

#import <UIKit/UIKit.h>
#import "AlerteSecours-Swift.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
// Use the Swift ExpoAppDelegate-based AppDelegate as the principal class.
// The Objective-C runtime name of the Swift class is `AppDelegate`
// because it is annotated with `@objc(AppDelegate)` in AppDelegate.swift.
return UIApplicationMain(argc, argv, nil, @"AppDelegate");
}
}