I want to lock the screen rotation, i.e. it should not rotate to landscape from portrait, even when I turn the device in ios and android.
The device should always be in portrait mode.
Please help how to solve this. Thanks.
I want to lock the screen rotation, i.e. it should not rotate to landscape from portrait, even when I turn the device in ios and android.
The device should always be in portrait mode.
Please help how to solve this. Thanks.
simply add android:screenOrientation="portrait" between every activity tags in your manifest
iOS: In XCode you can go to your target and under Deployment Info uncheck everything except Portrait for device orientation.
In android: android:screenOrientation="portrait" in the activity tag in the manifest file
add android:screenOrientation="portrait" to manifest
for android put this in onCreate of all you activities setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT);