mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-25 14:07:59 -05:00
18 lines
363 B
Objective-C
18 lines
363 B
Objective-C
//
|
|
// main.m
|
|
// example
|
|
//
|
|
// Created by Gregamel on 4/3/11.
|
|
// Copyright Boeing 2011. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
int retVal = UIApplicationMain(argc, argv, nil, @"exampleAppDelegate");
|
|
[pool release];
|
|
return retVal;
|
|
}
|