[TIMOB-14775] Android: Window orientation mode is neglected on application launch
| GitHub Issue | n/a | 
|---|---|
| Type | Bug | 
| Priority | High | 
| Status | Closed | 
| Resolution | Duplicate | 
| Resolution Date | 2013-08-07T16:46:22.000+0000 | 
| Affected Version/s | Release 3.1.2 | 
| Fix Version/s | n/a | 
| Components | Android | 
| Labels | qe-3.1.2, regression | 
| Reporter | Dhirendra Jha | 
| Assignee | Ingo Muschenetz | 
| Created | 2013-08-07T10:01:08.000+0000 | 
| Updated | 2017-03-20T22:10:46.000+0000 | 
Description
	This is a regression. Its not reproducible in SDK 3.1.1.GA build.
Steps - 
1. Used the below code.
2. Install and launch the app.
Actual result: A window gets displayed in portrait mode.
Expected result: A window should get displayed in landscape mode.
Note - Found this issue on executing test case of the issue TIMOB-10972
var _window = Ti.UI.createWindow({
    orientationModes : [Titanium.UI.LANDSCAPE_LEFT, Titanium.UI.LANDSCAPE_RIGHT],
    backgroundColor : 'white',
});
_window.open();
Duplicate of TIMOB-14759.