Rotate screen issue - OnePlus 7T Pro (Regular & McLaren) Q & A

I have issue with screen rotation, it does not work anymore even with screen rotation is enabled. My device 7T Pro is rooted.
History:
I was having issue with HDMI mirror, the second display was always flipped either portrait or landscape.
I tried multiple tutorials that sets device properties like the following:
```
adb shell setprop persist.demo.hdmirotation portrait
adb shell setprop persist.demo.hdmirotationlock false
adb shell setprop persist.demo.singledisplay true
```
However, it does not solve the issue. When I removed these props, the HDMI issue resolved, but the device wouldn't rotate any more.
Any one would help, thanks in advance

akhalifah said:
I have issue with screen rotation, it does not work anymore even with screen rotation is enabled. My device 7T Pro is rooted.
History:
I was having issue with HDMI mirror, the second display was always flipped either portrait or landscape.
I tried multiple tutorials that sets device properties like the following:
```
adb shell setprop persist.demo.hdmirotation portrait
adb shell setprop persist.demo.hdmirotationlock false
adb shell setprop persist.demo.singledisplay true
```
However, it does not solve the issue. When I removed these props, the HDMI issue resolved, but the device wouldn't rotate any more.
Any one would help, thanks in advance
Click to expand...
Click to collapse
Maybe you need to restore "build.prop" file located at system folder

Found any solution? Even with my rooted device and these settings it won't work.

Related

!!SOLVED!! [Q] stuck in tablet mode: auto-rotation off = landscape

Something strange has started happening, if I turn off auto rotation my XZU sticks in landscape mode.
If I turn on auto rotate then phone will do what I expect and operate in portrait and landscape mode. However, if I am lying down in bed I want the non auto mode to make phone stick to portrait mode.
I suspect the problem is related to having used Xposed framework and App Settings to override DPI and make Google Maps easier to read the car. However, disabling that module and Xposed doesn't fix the problem.
My c6802 xzu is running 4.4.4, unlocked bootloader, rooted with dual recovery.
I'd go poking at build.props but I don't know what to look for, and I've searched but most results about people wanting auto rotate control apps.
Thanks for reading and more thanks for any help.
Paul
you can force orientation of specific apps with app settings xposed module. Try that?
For example the youtube app does not respond to lock orientation setting so it will enter landscape mode if you rotate the phone so I forced the app to stay in portrait mode with the xposed module
Yes, I know I can force specific apps into specific orientations but I actually want everything to auto rotate when that setting is enabled.
e.g. I browse the web in portrait most of the time, but some websites only really work in landscape.
I just want my Xperia Z Ultra to behave like it always used to.. I.e. fixed portrait, or auto.
FIXED!
FIXED!
a few blank lines added for easy reading
Code:
$ adb shell
[email protected]:/ $ su -
[email protected]:/ #
# sqlite3 /data/data/com.android.providers.settings/databases/settings.db
SQLite version 3.7.6.3-Titanium
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> select * from system;
1|volume_music|11
2|volume_ring|5
... snip loads and loads...
3990|volume_voice_earpiece|2
3996|volume_music_headset|8
3997|volume_music_bt_a2dp|8
4007|media_button_receiver|com.amazon.mp3/com.amazon.mp3.playback.service.HeadsetControlsReceiver
sqlite> select * from system where name='accelerometer_rotation';
3970|accelerometer_rotation|1
sqlite> select * from system where name='user_rotation';
3638|user_rotation|3
sqlite> update system set value=0 where name='user_rotation';
sqlite> select * from system where name='user_rotation';
3638|user_rotation|0
sqlite> ^D
no need for a reboot, turned on auto-rotate and voila, device no longer thinks its a tablet.
note that the only sqlite3 binary I could find was one in the Titanium Backup Root app:
[email protected]:/ # find / -name sqlite3
/data/data/com.keramidas.TitaniumBackup/files/sqlite3
with thanks to Jakub Czaplicki for his post to StackExchange:
http://android.stackexchange.com/qu...fault-screen-orientation-in-android-specified

[FIX] No HDCP error Miracast (Ezcast) while screen mirroring all apps fix

Tested in (probably works in other Sony devices as well):
Xperia Z2 23.1.A.1.28 5.0.2
Rooted
Unlocked bootloader
If you have been greeted by these hateful messages when trying to connect to Miracast (EZcast)
"Could not turn on Screen mirroring. The output device is not ready or does not support HDCP."
"Could not start mirroring on the screen. Make sure the output device supports HDCP."
Probably you already have tried changing /system/etc/wfdconfig.xml:
Code:
...
<ContentProtection>
<Valid>1</Valid>
...
to
Code:
...
<ContentProtection>
<Valid>0</Valid>
...
After that the mirroring probably worked but got greeted by
"The output device does not support HDCP. You can only mirror unprotected content of the following applications:
Xperia Home, Video, Music or Walkman, Settings"
and then just before the mirroring get disconnected
"
Your output device does not support HDCP. Cannot mirror. You still can mirror some apps and unprotected content to the device."
There is a very easy fix, in this file /system/build.prop just below
Code:
persist.debug.wfd.enable=1
add
Code:
persist.debug.wfd.appmonitoring=1
and then from ADB
Code:
adb shell su setprop persist.debug.wfd.appmonitoring 1
Restart your phone, it should work.
As @s107ken mentioned in #14, In case of boot loop, go to TWRP and then
Code:
adb shell chmod 644 /system/build.prop
Cheers
themightydeity said:
Tested in (probably works in other Sony devices as well):
Xperia Z2 23.1.A.1.28 5.0.2
Rooted
Unlocked bootloader
If you have been greeted by these hateful messages when trying to connect to Miracast (EZcast)
"Could not turn on Screen mirroring. The output device is not ready or does not support HDCP."
"Could not start mirroring on the screen. Make sure the output device supports HDCP."
Probably you already have tried changing /system/etc/wfdconfig.xml:
Code:
...
1
...
to
Code:
...
0
...
After that the mirroring probably worked but got greeted by
"The output device does not support HDCP. You can only mirror unprotected content of the following applications:
Xperia Home, Video, Music or Walkman, Settings"
and then just before the mirroring get disconnected
"
Your output device does not support HDCP. Cannot mirror. You still can mirror some apps and unprotected content to the device."
There is a very easy fix, in this file /system/build.prop just below
Code:
persist.debug.wfd.enable=1
add
Code:
persist.debug.wfd.appmonitoring=1
and then from ADB
Code:
adb shell su setprop persist.debug.wfd.appmonitoring 1
Restart your phone, it should work.
Cheers
Click to expand...
Click to collapse
Thanks !!!
All ok with mirroring!!!
themightydeity said:
and then from ADB
Code:
adb shell su setprop persist.debug.wfd.appmonitoring 1
Restart your phone, it should work.
Cheers
Click to expand...
Click to collapse
where i have to write this? if i use adb from pc it says that not found the file. from terminal emulator it says device not found. Can you explain it?
edit: ok now works. any mode to send 5.1 audio for film? default is 2ch
fer2503 said:
where i have to write this? if i use adb from pc it says that not found the file. from terminal emulator it says device not found. Can you explain it?
edit: ok now works. any mode to send 5.1 audio for film? default is 2ch
Click to expand...
Click to collapse
How you do this any tutorial?
For adb
Edit: Got it!
Working flawlessly!
after doing like what OP showed, i also got the file not found at the final step. Could someone help me sort this out
p/s: actually i received the error :
sh: persist.debug.wfd.appmonitoring: not found
I use terminal emulator:
Write in this order:
Su
Press enter and after write:
setprop persist.debug.wfd.appmonitoring 1
now reboot and all Works
Works for me! Xperia ZL 6506
Not needs run
Code:
adb shell su setprop persist.debug.wfd.appmonitoring 1
Encripted content like Netflix not works!
Hi! Should it work with locked bootloader? Root required? Thanks!
i see the display mirroring on tv in 720p only, not in 1080p with my z1. with other device the microsoft display adapter works at 1080p. any solution about that?
Thank you so much, this worked great, I can now get my screen mirroring working again.
I had no idea that unlocking the boot loader would kill HDCP...
Thanks for the hard work.
zaryab360 said:
How you do this any tutorial?
For adb
Edit: Got it!
Working flawlessly!
Click to expand...
Click to collapse
i also got error msg "device not found" while entering adb command ... can u plz me how to do it??
OMG, i waited this so long, thanks a lot
z1c 5.0
Hi, after doing everything OP described my phone went on to bootloop after restart. I restored everything from TWRP backup and tried again, same thing happened after changing the build.prop and rebooting (now I didn't even change wfdconfig.xml, so the changed build.prop must be causing the bootloop, right?). Am I doing something wrong?
adb shell chmod 644 /system/build.prop
Sent from my GT-I9305 using XDA Free mobile app
thanks a lot s107ken, that solved the bootloop problem, but still screen mirroring doesn't work properly and gives me HDCP error. I am on 5.1.1 btw... could that be the real issue here?
Work on Xperia M4 Aqua with unlocked bootloader!
Display mirroring on tv in 720p only, not in 1080p but I'm hapy
Thanks!
Followed steps as they are ... No difference running existenz premium 3.5v Z2
Are there way to change resolution? I see some rows about resolution in wfdconfifg.xlm
Enviado desde mi E2303 mediante Tapatalk
Thanks, that works for me.
I skiped the last step, but it worked for me...
Fixed everything!
Can't believe it! That fixed everything!
Few things I want to note:
I did this on a Unlocked / Rooted Xperia Z4 LTE (v.260)
I followed all the steps listed in the original post and ended up in a bootloop.
Using the method @s107ken mentioned above ( adb shell chmod 644 /system/build.prop ) in TWRP fixed the bootloop.
Can confirm this is still working on the newer devices. Great to be able to cast to large screens again. Thanks @themightydeity and @s107ken

Mtknoled.apk

Hi guys,
i have a problem. I did execute the mtknoled.apk becoause oft some battery issues.
And the result was not gold, because my battery Problem still was not fixed, and the notification light was disabled.
Now I want my led notification work again.
Can someone help me out, with an apk which enables the led again?! Would be great!
THX in advance
Not sure if this is still needed but here's what worked for me:
1) install and launch Minimal ADB and Fastboot;
2) once the phone is connected and recognized, execute
Code:
adb shell settings put system notification_light_pulse 1
You can verify the result with:
Code:
adb shell settings get system notification_light_pulse
It will give "0" if disabled and "1" if enabled.

Starting adb on boot process? For debugging purposes...

Hi guys, i successfully build from scratch a device and vendor tree for my rom, and compile CM13 with no problems.
The roms boots but i get a bootloop when it come into "starting apps". My idea is get adb working on boot proccess.
I was googling but i couldn't get working....
This is my init.qcom.rc: https://drive.google.com/open?id=0ByjBTzGuQ9FIQldHTGxBWjdtczQ
And init.usb.rc generated by CM13: https://drive.google.com/open?id=0ByjBTzGuQ9FIc1ZVNnVpTVExOE0
Thanks
Well guy i was digging around and testing ALOT with no luck. Still can't enable adb at boot.
I try adding this properties on default.prop:
Code:
ro.adb.secure=0
ro.secure=0
ro.debuggable=1
persist.sys.usb.config=mtp,adb
An this in build.prop:
Code:
ro.default_usb_mode=0
persist.service.adb.enable=1
persist.service.debuggable=1
persist.sys.usb.config=mtp,adb
My device is a Forge TV, and it have a single usb port and no sdcard slot, so the only way to get a log is via usb...
In the stock rom, by default, starts in host mode (storage) and you have to go into config to change it into "device mode" to get usb adb working....
Probably i need to manage how the usb port starts at boot, i thought that "ro.default_usb_mode=0" was the solution...but no
Any help will be appreciated!
PS. lsusb doesn't recognize any device....only in fastboot mode
So i found out something interesting...in stock rom if i execute the command echo 0 > /proc/usb_device the device put itself in device mode and i can debug, putting that value to 1 reverts to storage.
I try to put that on init.d, or even on init.qcom.rc in the boot image with no luck....it's so frustating...
Ususally adbd should already be running this late during the boot.
Can you at least get an usb connection during boot? (check lsusb)
If you want to get at least a dmesg output during boot you could try the following:
set this in the build.prop
Code:
debug.sf.nobootanimation=1
set the following in your kernel defconfig
Code:
CONFIG_VGA_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
(not all of them are needed but I forgot which ones are and which ones are not)
add this to the kernel command line
Code:
console=tty1 loglevel=7
This should at least show some output on the phone screen itself.
To run something in the console, you could try to connect an usb keyboard or use something like a scriptable virtual keyboard.
You might need to set loglevel to 1 or 0 if you don't want it to spam your console while working on it.
ruleh said:
Ususally adbd should already be running this late during the boot.
Can you at least get an usb connection during boot? (check lsusb)
If you want to get at least a dmesg output during boot you could try the following:
set this in the build.prop
Code:
debug.sf.nobootanimation=1
set the following in your kernel defconfig
Code:
CONFIG_VGA_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
(not all of them are needed but I forgot which ones are and which ones are not)
add this to the kernel command line
Code:
console=tty1 loglevel=7
This should at least show some output on the phone screen itself.
To run something in the console, you could try to connect an usb keyboard or use something like a scriptable virtual keyboard.
You might need to set loglevel to 1 or 0 if you don't want it to spam your console while working on it.
Click to expand...
Click to collapse
Hi, thanks alot for your answer! My device is a Razer Forge TV wich is an Android TV device. It's equiped with a single full usb 3.0 port and no sdcard slot. The port works in 2 ways, by default in host mode and device mode (the mode i need to get some debug output). In the stock rom executing "echo 0 > /proc/usb_device" enable this mode and remains on reboot. But doesn't seems to work on CM (i put the command on an init.d script). lsusb reports nothing (equal in stock rom when the port is in host mode).
I test the soluton you provided, but instead of bootanimation i get a black screen then optimizing apps, starting apps and reboot (wich is my main problem)....there's no output on screen...i'm stuck on this like 10 days or more...is so annoying...thanks again
achaw said:
Hi, thanks alot for your answer! My device is a Razer Forge TV wich is an Android TV device. It's equiped with a single full usb 3.0 port and no sdcard slot. The port works in 2 ways, by default in host mode and device mode (the mode i need to get some debug output). In the stock rom executing "echo 0 > /proc/usb_device" enable this mode and remains on reboot. But doesn't seems to work on CM (i put the command on an init.d script). lsusb reports nothing (equal in stock rom when the port is in host mode).
I test the soluton you provided, but instead of bootanimation i get a black screen then optimizing apps, starting apps and reboot (wich is my main problem)....there's no output on screen...i'm stuck on this like 10 days or more...is so annoying...thanks again
Click to expand...
Click to collapse
You could try to insert a usb stick, mount it, and then write dmesg and/or adb output to it using init.rc.
Alternatively you could try to enable adb over tcp and connect that way to it.
Alos try to chose a different tty in the kernel command line.
(btw are the following three lines present in your kernel defconfig?)
Code:
CONFIG_VT_CONSOLE=y
CONFIG_TTY=y
CONFIG_VT=y
ruleh said:
You could try to insert a usb stick, mount it, and then write dmesg and/or adb output to it using init.rc.
Alternatively you could try to enable adb over tcp and connect that way to it.
Alos try to chose a different tty in the kernel command line.
(btw are the following three lines present in your kernel defconfig?)
Code:
CONFIG_VT_CONSOLE=y
CONFIG_TTY=y
CONFIG_VT=y
Click to expand...
Click to collapse
I can't mount usb or enable adb over tcp becasuse the system reboot itself at starting apps...
Right now i'm testing with your new config, switching ttys because i'm still getting black screen instead some output...
Well after some days i remember that the Forge iss equipped with a ethernet port...i feel so stupid lol...
So i was able to debug via adb over tcp.... @ruleh thanks alot for your time!
I think "starting apps" happens when zygote is started.
If it is really the case then it should be possible to mount an usb stick and write the logs to it before everything reboots.
According to the init files I have, init.${ro.hardware}.rc would be the place to do the mount+write.
Ideally /system is mounted and /system/bin is in the path to access tools like logcat and dmesg.
Otherwise you could include them in /sbin which is (in most cases) part of the ramdisk.
It would probably be something like this:
Code:
on early-boot
#mkdir /mnt/usb
mount /dev/(usb_stick) /mnt/usb
exec /system/bin/dmesg > /mnt/usb/dmesg.log
exec /system/bin/logcat > /mnt/usb/logcat.log
(I have never used the init.rc files directly so I am not too sure.)
Also did you try "write /proc/usb_device 0" instead of "echo 0 > /proc/usb_device" in the init.rc files? (preferably before zygote starts...maybe init.usb.rc?)
Or you could try to remove the lines referencing zygote from the init.rc files and see if adbd starts then or not.
---------- Post added at 20:17 ---------- Previous post was at 20:16 ----------
achaw said:
Well after some days i remember that the Forge iss equipped with a ethernet port...i feel so stupid lol...
So i was able to debug via adb over tcp.... @ruleh thanks alot for your time!
Click to expand...
Click to collapse
I wish I read this a bit earlier...... oh well

[THEME][NO ROOT][ANDROID 10] Enable Pixel themes and more with adb

Hi folks,
I've just received my brand new Xperia 1 II and I don't want to unlock the bootloader and root it.
So, I've figured out that Sony haven't removed the Pixel themes overlays from the system.
IT WORKS WITH ALL XPERIA using android 10
Here's how to activate Filled, Rounded and Circular themes.
Code:
adb shell cmd overlay enable com.android.theme.icon_pack.filled.android
adb shell cmd overlay enable com.android.theme.icon_pack.filled.systemui
adb shell cmd overlay enable com.android.theme.icon_pack.filled.settings
Code:
adb shell cmd overlay enable com.android.theme.icon_pack.rounded.android
adb shell cmd overlay enablecom.android.theme.icon_pack.rounded.systemui
adb shell cmd overlay enable com.android.theme.icon_pack.rounded.settings
Code:
adb shell cmd overlay enable com.android.theme.icon_pack.circular.android
adb shell cmd overlay enable com.android.theme.icon_pack.circular.systemui
adb shell cmd overlay enable com.android.theme.icon_pack.circular.settings
If you want to apply a new theme or come back to default theme, you have to disable previously enabled one with:
Code:
adb shell cmd overlay disable com.android.theme.icon_pack.circular.android
adb shell cmd overlay disable com.android.theme.icon_pack.circular.systemui
adb shell cmd overlay disable com.android.theme.icon_pack.circular.settings
Reboot is needed to apply the theme on lockscreen.
You can also change the color accent with this:
Code:
adb shell cmd overlay enable com.android.theme.color.purple
and disable it with
Code:
adb shell cmd overlay disable com.android.theme.color.purple
Replace "purple" with black, cinnamon, green, ocean, orchid or space for other colors
If you want to change icon shape, use this:
Code:
adb shell cmd overlay enable com.android.theme.icon.roundedrect
and disable it with:
Code:
adb shell cmd overlay disable com.android.theme.icon.roundedrect
Replace "roundedrect" with squircle or teardrop for other shapes.
If like me you don't like headsup notifications, you can turn them off with:
Code:
adb shell settings put global heads_up_notifications_enabled 0
Replace "0" by 1 to enable them back
Epic bro ??
wow! that's pretty cool, thank you for this
niaboc79 said:
Hi folks,
I've just received my brand new Xperia 1 II and I don't want to unlock the bootloader and root it.
So, I've figured out that Sony haven't removed the Pixel themes overlays from the system.
IT WORKS WITH ALL XPERIA using android 10
Here's how to activate Filled, Rounded and Circular themes.
Code:
adb shell cmd overlay enable com.android.theme.icon_pack.filled.android
adb shell cmd overlay enable com.android.theme.icon_pack.filled.systemui
adb shell cmd overlay enable com.android.theme.icon_pack.filled.settings
Code:
adb shell cmd overlay enable com.android.theme.icon_pack.rounded.android
adb shell cmd overlay enablecom.android.theme.icon_pack.rounded.systemui
adb shell cmd overlay enable com.android.theme.icon_pack.rounded.settings
Code:
adb shell cmd overlay enable com.android.theme.icon_pack.circular.android
adb shell cmd overlay enable com.android.theme.icon_pack.circular.systemui
adb shell cmd overlay enable com.android.theme.icon_pack.circular.settings
If you want to apply a new theme or come back to default theme, you have to disable previously enabled one with:
Code:
adb shell cmd overlay disable com.android.theme.icon_pack.circular.android
adb shell cmd overlay disable com.android.theme.icon_pack.circular.systemui
adb shell cmd overlay disable com.android.theme.icon_pack.circular.settings
Reboot is needed to apply the theme on lockscreen.
Click to expand...
Click to collapse
that´s briliant work, thans a lot!!!
the phone doesn´t come a trully and extended dark mode
is more grey than black in the settings menu
can you change that with ADB commands?
Again, congratulations, and thanks a lot
Guys how and where do I type these codes?
Do I need to unlock my phone or can I just do it using and ADB app?
And do you know how to get rid and/or edit the text on the apps? I could do all this easily on my OnePlus but it's nowhere to be seen in the 1ii
Ricardo_G said:
that´s briliant work, thans a lot!!!
the phone doesn´t come a trully and extended dark mode
is more grey than black in the settings menu
can you change that with ADB commands?
Again, congratulations, and thanks a lot
Click to expand...
Click to collapse
With root you can change everything, when I'll do my rom you'll get 8 various background colors.
eskimosound said:
Guys how and where do I type these codes?
Do I need to unlock my phone or can I just do it using and ADB app?
And do you know how to get rid and/or edit the text on the apps? I could do all this easily on my OnePlus but it's nowhere to be seen in the 1ii
Click to expand...
Click to collapse
Enable usb debugging, use minimal adb (Google)
You can't removed application name. Use an other launcher.
niaboc79 said:
Enable usb debugging, use minimal adb (Google)
You can't removed application name. Use an other launcher.
Click to expand...
Click to collapse
Thanks will have a go..
niaboc79 said:
If like me you don't like headsup notifications, you can turn them off with:
Code:
adb shell settings put global heads_up_notifications_enabled 0
Replace "0" by 1 to enable them back
Click to expand...
Click to collapse
Just came for curiosity and found and amazing command
Applied to my Xperia 10 II.
Thanks @niaboc79!!!!
Just curiosity, if I reboot my phone heads up notification will be enable = 1 or will keep 0?
Meloferz said:
If like me you don't like headsup notifications, you can turn them off with:
Just came for curiosity and found and amazing command
Applied to my Xperia 10 II.
Thanks @niaboc79!!!!
Just curiosity, if I reboot my phone heads up notification will be enable = 1 or will keep 0?
Click to expand...
Click to collapse
It will keep 0 mate
niaboc79 said:
Hi folks,
I've just received my brand new Xperia 1 II and I don't want to unlock the bootloader and root it.
Click to expand...
Click to collapse
Hello. Sorry if unrelated, but have you thought about porting gcam to Xperia 1 II, since there's only very few people on XDA having access to this phone.
The Xperia 1 II camera hardware and the photopro manual camera is excellent. But the stock camera app is very lacklustre. Seeing that this phone is S865 with sensor similar to S20 Plus, it should theoretically doable. Most people just want to point and shoot and get images with great dynamic range.
Hi @niaboc79, reeeeaaaaaally good work. Thanks alot for that.
What commands do I have to type in to get a full stock Pixel experience?
And is there a way to activate an overlay that gives me an OLED black settings panel?
Onepunchbro said:
Hello. Sorry if unrelated, but have you thought about porting gcam to Xperia 1 II, since there's only very few people on XDA having access to this phone.
The Xperia 1 II camera hardware and the photopro manual camera is excellent. But the stock camera app is very lacklustre. Seeing that this phone is S865 with sensor similar to S20 Plus, it should theoretically doable. Most people just want to point and shoot and get images with great dynamic range.
Click to expand...
Click to collapse
No since stock or photo pro auto mode works perfectly, I haven't missed one picture since day one.
churchner420 said:
Hi @niaboc79, reeeeaaaaaally good work. Thanks alot for that.
What commands do I have to type in to get a full stock Pixel experience?
And is there a way to activate an overlay that gives me an OLED black settings panel?
Click to expand...
Click to collapse
You'll get everything with my rom later.
But to let you know, you can't install an overlay without original signature key.
niaboc79 said:
You'll get everything with my rom later.
But to let you know, you can't install an overlay without original signature key.
Click to expand...
Click to collapse
That's nice but I won't unlock my Xperia 1 II. Thanks anyway
Can I use adb to get 2 button navbar like android9?
bkk99213 said:
Can I use adb to get 2 button navbar like android9?
Click to expand...
Click to collapse
No the needed overlay isn't there.
@niaboc79 Just got my Xperia 1 II. There is one thing that really sets me up... When I connect my phone to my Wifi 6 mobile hotspot from my computer which I use most of the time the phone connected but no internet access. Any other Wifi netfork is absolutely fine. Any ideas? I am on the latest Sony firmware flashed with newflasher v20 and then with performed a software repair with Xperia Companion. Any ideas what the problem could be?

Categories

Resources