I am trying to work on a project that will work on 4 orientations. I set it on AndroidManifest.xml android:screenOrientation="sensor", it works but it only does 3 orientation. So i set it to android:screenOrientation="fullSensor" for 4 orientation. Unfortunately, i got this error
error: Error: String types not allowed (at 'screenOrientation' with value
'fullSensor').
Anybody knows how to make this work?
fullSensor is supported only from API level 9.
Refer http://developer.android.com/guide/topics/manifest/activity-element.html.