summaryrefslogtreecommitdiff
path: root/Example Apps/Example ObjC/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'Example Apps/Example ObjC/main.m')
-rw-r--r--Example Apps/Example ObjC/main.m12
1 files changed, 12 insertions, 0 deletions
diff --git a/Example Apps/Example ObjC/main.m b/Example Apps/Example ObjC/main.m
new file mode 100644
index 000000000..4566abbdd
--- /dev/null
+++ b/Example Apps/Example ObjC/main.m
@@ -0,0 +1,12 @@
+//
+// main.m
+// SmartDeviceLink-iOS
+
+#import <UIKit/UIKit.h>
+#import "AppDelegate.h"
+
+int main(int argc, char * argv[]) {
+ @autoreleasepool {
+ return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
+ }
+}