I have tried every method to lock the screen to portrait orientation but they simply do not work after testing the app via Adobe PhoneGap Build.
Firstly, I have modified the MainActivity.java file to include at onCreate
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
Secondly, I have modified the config.xml file to include
<preference name="orientation" value="portrait" />
Thirdly, I have modified the Manifest file to include
android:screenOrientation="portrait"
None of the above are working.