How can I disable screen orientation in Android Instant app???
I used
android:screenOrientation="portrait"
in every Manifest file (in 3 files) but it doens`t help!
How can I disable screen orientation in Android Instant app???
I used
android:screenOrientation="portrait"
in every Manifest file (in 3 files) but it doens`t help!
Thanks for reporting the bug Igor. The fix for setting screenOrientation through Manifest in instant apps is coming soon.
You can do it something like
From Fragment
getActivity().setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); // programmatically
From Activity
setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);