Haxe extension to set screen orientation in Android apps.
haxelib git android-orientation https://github.com/danielpancake/android-orientation.gitPrecompiled libraries are included, but it is recommended you compile them yourself:
lime rebuild android-orientation android- In Project.xml:
<!-- Add this line in the libraries section of your Project.xml file -->
<haxelib name="android-orientation" />- In any Haxe package of your project:
import extension.androidorientation.AndroidOrientation;
...
AndroidOrientation.setScreenOrientation(AndroidOrientation.SENSOR_LANDSCAPE);
// or UNSPECIFIED, PORTRAIT, REVERSE_PORTRAIT, SENSOR_PORTRAIT, LANDSCAPE, REVERSE_LANDSCAPEIt is advised to call this function as early as possible (preferably in preloader) to avoid screen cropping.