1) 1.076
2) Used the template from 1.076, I had some issues with the armv7s that you posted about earlier, and have changed that setting to not compile for armv7s.
3)
//
// main.m
// iphone_app
//
// Created by Paul Johnston on 09/10/2010.
// Copyright __MyCompanyName__ 2010. 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;
}
the breakpoint is on 'int retVal...'
This happens as soon as the app starts.