PINE64
Android Orientation - Printable Version

+- PINE64 (https://forum.pine64.org)
+-- Forum: ROCKPRO64 (https://forum.pine64.org/forumdisplay.php?fid=98)
+--- Forum: Android on RockPro64 (https://forum.pine64.org/forumdisplay.php?fid=100)
+--- Thread: Android Orientation (/showthread.php?tid=6403)

Pages: 1 2


RE: Android Orientation - bpalan - 09-10-2018

Finally got it done.

First I sorted out the adb connection issue. I tried different combinations of USB ports in my computer until one eventually worked. 
Then I cleaned out all the "Set Orientation" apps.
Then I did the following.
adb pull /system/build.prop
vi build.prop
       ro.sf.fakerotation=false
       ro.sf.hwrotation=90
       save and exit
adb root
adb remount
adb push build.prop /system/build.prop
adb shell "setprop persist.demo.hdmirotation portrait"
adb reboot

[Image: Screen_Shot_2018_09_10_at_8_27_04_pm.png]


RE: Android Orientation - Luke - 09-10-2018

Great! Also, thanks for posting the solution.