Forçar modo retrato para Android no Appcelerator

Basta soltar isso em seu arquivo app.js:

if (Ti.Platform.osname.match(/android/g)){
Ti.Gesture.addEventListener('orientationchange', function(e) {
Ti.Android.currentActivity.setRequestedOrientation(Ti.Android.SCREEN_ORIENTATION_PORTRAIT);
});
}