BouncyTrip
1 - My config file does specify landscape.
2 - I can't remember what I specified for 'hybrid app project'. Game project however was set to yes. What does hybrid app project do?
3 - Supported devices is set to universal, I'm running on iOS 8.
And I'm also exporting without minifying.
The index file I showed you in my last post was my basic code, not including the line which is supposed to lock the orientation. I have however tried adding this line in various different places. I found the appropriate code my searching Intel XDK forums online. The line is:
document.addEventListener("intel.xdk.device.ready", onDeviceReady, false);
function onDeviceReady(){
intel.xdk.device.setRotateOrientation('landscape');
intel.xdk.device.setAutoRotate(false);
intel.xdk.device.hideSplashScreen();
}
Is this the correct line to input? Where in my above code should it go?
Thanks again for helping!