Edit : i only work on XCODE (iOS/Mac) so i didn't gave a look for android ones.
Ok i just compared the templates with mine...
And i can confirm that 1076 is a good choice only if you need it.
I use the 1074 AGKLIB with my fix for orientation.
If you don't need the 1076 this is my fix for the Landscape Left (you can change as you want):
[[UIApplication sharedApplication] setStatusBarOrientation: UIInterfaceOrientationLandscapeLeft];
Add this in the awakeFromNib at the end, and choose your orientation both in AppGameKit (in the 1074 0,0,0,1) and in untitledViewController.m with my piece of code.
Edit 2: For the keyboard fix on orientation, i use the same fix upper, but not in the awakeFromNib but in keyboardwillshow adding a notification that call the function.
I never got the orientation i need in 1076, i don't know why.
As i use Obj C (50% of my codes) for example to use edit boxes mixing the AppGameKit layer with mine, i don't need the last addictions in 1076.
I never got rejected for the orientation cause i use this:
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
//return NO;
switch( interfaceOrientation ){
case UIInterfaceOrientationPortrait: return YES;
case UIInterfaceOrientationPortraitUpsideDown: return NO;
case UIInterfaceOrientationLandscapeLeft: return NO;
case UIInterfaceOrientationLandscapeRight: return NO;
default: return NO;
}
}
But in the INFO parameters i only allow Landscape (left or right).
If you use this combinations of fix, you can get your orientation fixed to 1 position and Apple will think that you use Portrait and Landscape, so 2 minimum as they require.
We can say that the template, in the end, is personal, because we code it for our specific needle.
But with your the template i can't get it as i want, cause i want it came out directly in Landscape.
Instead with 1076 i get always portrait and then stretched, cause it is coded for landscape only.
Anyway i don't know if the catch for the background is included in 1074, i will do some test.
Usually i don't enable the background feature for my apps.
Long life to Steve!