photo-ios/Frameworks/Google Analytics SDK/Examples/BasicExample/main.m
2012-10-25 15:55:28 +02:00

15 lines
318 B
Objective-C

//
// main.m
// Google Analytics iOS SDK.
//
// Copyright 2009 Google Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}