Landscape orientation doesn't work in Corona Native Android builds

Hi,

I have a problem with orientation in Android native build. It works great in simulator and for ios ( and even for Android version built with Corona Simulator )

I have “orientation” event on device with correct event.type (it shows “portrait” and “landscapeLeft” as type) but it actually doesn’t rotate an activity (screen). 

and display.contentWidth and display.contentHeight don’t change when I get orientation event.

I didn’t change AndroidManifest.xml 

how to fix that or maybe force activity rotation?

Thanks

just for someone who is looking for an answer:

android:screenOrientation=“sensor”, not android:screenOrientation=“portrait”

\<activity android:name="com.ansca.corona.CoronaActivity" android:screenOrientation="sensor" android:configChanges="keyboard|keyboardHidden|navigation|screenSize|orientation" android:label="@string/app\_name" android:launchMode="singleTask" android:theme="@android:style/Theme.NoTitleBar.Fullscreen"\> \<intent-filter\> \<action android:name="android.intent.action.MAIN" /\> \<category android:name="android.intent.category.LAUNCHER" /\> \</intent-filter\> \</activity\>

just for someone who is looking for an answer:

android:screenOrientation=“sensor”, not android:screenOrientation=“portrait”

\<activity android:name="com.ansca.corona.CoronaActivity" android:screenOrientation="sensor" android:configChanges="keyboard|keyboardHidden|navigation|screenSize|orientation" android:label="@string/app\_name" android:launchMode="singleTask" android:theme="@android:style/Theme.NoTitleBar.Fullscreen"\> \<intent-filter\> \<action android:name="android.intent.action.MAIN" /\> \<category android:name="android.intent.category.LAUNCHER" /\> \</intent-filter\> \</activity\>