summaryrefslogtreecommitdiff
path: root/platform/ios/demo/Examples/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/demo/Examples/main.m')
-rw-r--r--platform/ios/demo/Examples/main.m16
1 files changed, 16 insertions, 0 deletions
diff --git a/platform/ios/demo/Examples/main.m b/platform/ios/demo/Examples/main.m
new file mode 100644
index 0000000000..b696b599b6
--- /dev/null
+++ b/platform/ios/demo/Examples/main.m
@@ -0,0 +1,16 @@
+//
+// main.m
+// Examples
+//
+// Created by Jason Wray on 1/26/16.
+// Copyright © 2016 Mapbox. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+#import "AppDelegate.h"
+
+int main(int argc, char * argv[]) {
+ @autoreleasepool {
+ return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
+ }
+}