I have a React app running inside a Cordova wrapper and want to disable landscape mode for only iPod users. Does anyone know how to do this? I'm assuming I need to add something within config.xml
.
Asked
Active
Viewed 52 times
1

Ralph David Abernathy
- 5,230
- 11
- 51
- 78
1 Answers
0
You can set preference in your config.xml
.
<preference name="orientation" value="portrait" />

Nisan Coşkun
- 516
- 7
- 15
-
But how can I do this just for iPod users? – Ralph David Abernathy Feb 07 '18 at 17:09
-
1Cordova doesn't support this out-of-the-box, check [this](https://stackoverflow.com/questions/30497799/can-i-set-different-orientations-for-ipad-and-iphone-universal-app-in-cordova) – Nisan Coşkun Feb 07 '18 at 17:12