How to restrict app to portrait mode only in ionic for all platform

by - July 27, 2016



down voteaccepted
If you want to restrict to portrait mode only on all devices you should add this line to the config.xml in your projects root folder.
(Be aware that these values are case sensitive, it is "Orientation", not "orientation".)
<preference name="orientation" value="portrait" />
After that, please rebuild the platform by typing below text in command line:
ionic build

You May Also Like

0 comments