Question Light Mode from Fold 4 (Oneui 5.0) - Samsung Galaxy S22 Ultra

Its Possible to use the light Mode in the Oneui 5.0 beta.
with Adb:
Light mode:
adb shell settings put global sem_low_heat_mode 1
Default mode:
adb shell settings put global sem_low_heat_mode 0
Or with aliance shield:

How to verify its on light mode using adb only? I did this on beta oneui 5.0 but do not see any 'light mode' under device care.

linom said:
How to verify its on light mode using adb only? I did this on beta oneui 5.0 but do not see any 'light mode' under device care.
Click to expand...
Click to collapse
Cant verify but if there isnt an error on adb it should Work. Maybe try benchmark with on and off. Dont know about any other Option to use it now sorry mate

Goku1992 said:
Cant verify but if there isnt an error on adb it should Work. Maybe try benchmark with on and off. Dont know about any other Option to use it now sorry mate
Click to expand...
Click to collapse
run adb command to see if setting applied,
if it shows 1 it's on.
adb shell settings get global sem_low_heat_mode

bandy17 said:
run adb command to see if setting applied,
if it shows 1 it's on.
adb shell settings get global sem_low_heat_mode
Click to expand...
Click to collapse
Thanks mate

Thank you

But it seems like this isnt working... Also not on the stable oneui 5 Update. Sadly Samsung dont add it...

what is this for? i dont see any differences

How do I know if it's working beside in adb?

amem said:
How do I know if it's working beside in adb?
Click to expand...
Click to collapse
You don't

Related

[App][Root] ADB Tools

ADB Tools
Easily set how your Mobile is connected to ADB.
Supported Modes
ADB over USB
ADB over WiFi
Starting,Stopping and Restarting the ADB Daemon
Planned Features
Start service on Device Boot
Widget to Toggle Mode
ADB Tools 1.1 Test
Supported Modes
ADB over USB
ADB over WiFi
Starting,Stopping and Restarting the ADB Daemon
Start ADB in Wifi/USB Mode on Device Boot
Enable persistent Wifi Mode.
ADB Tools 1.1 Test 2
Changelog:
Wait for SU Persmission. Exit if SU permissions not Granted.
Improved SU Detection and App StartUp
Better info about what each option does.
Improved Boot Startup service.
Lot of Code Cleanup and Bug Fixes
Click to expand...
Click to collapse
NOTE: This app will not work without root permissions
Download
XDA:DevDB Information
ADB Tools,
Contributors
idragon81
Version Information
Status: Alpha
Created 2014-11-27
Last Updated 2014-11-27
Instructions of usage
ADB Over WiFi
1) Select the ADB Wifi Option and Apply
2) Note the IP Address that is given in the WiFi Info Field. (Usually 192.168.x.x)
3) Open CMD/Terminal and type adb connect 192.168.x.x
4) Voila!! Happy Programming
ADB Over USB
1) Select the ADB USB Option and Apply
2) Connect USB
3) And that's it. Happy Programming =)
great idea , and you thread is in portal , i will try it now, meanwhile where are the links?
Yeah, no download links.
yep no download links???
Sam_in_PGH said:
Yeah, no download links.
Click to expand...
Click to collapse
amit.tiger12 said:
yep no download links???
Click to expand...
Click to collapse
Ctrl + F -> type 'Downloads' !
Profit?
Profit!
Sam_in_PGH said:
Yeah, no download links.
Click to expand...
Click to collapse
amit.tiger12 said:
yep no download links???
Click to expand...
Click to collapse
CobraCommander said:
Ctrl + F -> type 'Downloads' !
Profit?
Profit!
Click to expand...
Click to collapse
DevDB is convoluted as hell to me, but obviously this is what I did.....never seen this crizzap before!:good:
CobraCommander said:
Ctrl + F -> type 'Downloads' !
Profit?
Profit!
Click to expand...
Click to collapse
amit.tiger12 said:
yep no download links???
Click to expand...
Click to collapse
Sam_in_PGH said:
Yeah, no download links.
Click to expand...
Click to collapse
ArjunrambZ said:
great idea , and you thread is in portal , i will try it now, meanwhile where are the links?
Click to expand...
Click to collapse
DOWNLOAD LINK​
Winged_Panther said:
DOWNLOAD LINK​
Click to expand...
Click to collapse
Please don't quote me again..
I found the link.
And for those who quoted me, when I replied there was no download section available.
As per that, I stroked my reply.
So don't quote me again.
Thank you.
Debug
How can I use this to run my application from IntelliJ (AndStudio)!
I have installed this. I have given it root access, I have applied Wifi mode, I have then tried to connect to the IP address in Wifi info but I just keep getting the message that it cannot connect. No problems with USB. Can anyone confirm that it works using wifi?
The question that strikes me is .. how is this different to other tools like adb wireless?
What I am looking for ist a tool that fixes my adb to wireless regardless of a reboot or of a wifi toggle and easily lets me set it back to permanent USB. Haven't found that yet. I can boot with adb wireless with an init.d script but there is not a real simple way to turn that off I want to go back to USB. Maybe that's sort of a brain teaser
Doesn't work!
Settings are dead.
Don't even try this crap, guys.
P.S.: Anyone took a look inside? May be it is some root trojan?
useless
Or you can just open terminal emulator and type:
Code:
su
setprop service.adb.tcp.port 5555
restart adbd
And you can disable it and return ADB to listening on USB with
Code:
su
setprop service.adb.tcp.port -1
restart adbd
PC side:
Code:
adb tcpip 5555
adb connect 192.168.x.x
y2k2r2d2 said:
How can I use this to run my application from IntelliJ (AndStudio)!
Click to expand...
Click to collapse
Android Studio keeps starting up its own instance of ADB. To use this with android studio you need to run adb kill-server and the the adb connect command.
MJD said:
I have installed this. I have given it root access, I have applied Wifi mode, I have then tried to connect to the IP address in Wifi info but I just keep getting the message that it cannot connect. No problems with USB. Can anyone confirm that it works using wifi?
Click to expand...
Click to collapse
Could you please provide more info on your PC OS and your handheld device? I'll look into it.
daniello8 said:
The question that strikes me is .. how is this different to other tools like adb wireless?
What I am looking for ist a tool that fixes my adb to wireless regardless of a reboot or of a wifi toggle and easily lets me set it back to permanent USB. Haven't found that yet. I can boot with adb wireless with an init.d script but there is not a real simple way to turn that off I want to go back to USB. Maybe that's sort of a brain teaser
Click to expand...
Click to collapse
Right now it isn't very different, but I got what you are saying, and that's next on my list.
Revertron said:
Doesn't work!
Settings are dead.
Don't even try this crap, guys.
P.S.: Anyone took a look inside? May be it is some root trojan?
Click to expand...
Click to collapse
Could you let me know what is not working?
valexi said:
Or you can just open terminal emulator and type:
Code:
su
setprop service.adb.tcp.port 5555
restart adbd
And you can disable it and return ADB to listening on USB with
Code:
su
setprop service.adb.tcp.port -1
restart adbd
PC side:
Code:
adb tcpip 5555
adb connect 192.168.x.x
Click to expand...
Click to collapse
It does work the way that you have mentioned, however i didn't find it very convenient to type in those commands everytime i had to develop. It works either way so choose whatever you are comfortable with.
idragon81 said:
Could you please provide more info on your PC OS and your handheld device? I'll look into it.
Click to expand...
Click to collapse
I am using:
GT-i9505
Paranoid Android 4.6-BETA5 (4.4.4)
OS X 10.10.1
Hi.. I'm trying to download the app from my S4 but I can't open the viglink link. Could you send me the original link?
MJD said:
I am using:
GT-i9505
Paranoid Android 4.6-BETA5 (4.4.4)
OS X 10.10.1
Click to expand...
Click to collapse
I'll look into it, I don't know how it works on Mac, can you try using root permissions on Mac if something like this is present,
I'll look into it as soon as my exams are over
peppe130 said:
Hi.. I'm trying to download the app from my S4 but I can't open the viglink link. Could you send me the original link?
Click to expand...
Click to collapse
Link for apk http://forum.xda-developers.com/devdb/project/dl/?id=9961&task=get
this is AWESOME....wireless everywhere=) yikes, can't wait to try it now=)

problem with adb shell

adb shell
error: device unauthorized. Please check the confirmation dialog on your device.
adb devices
List of devices attached
0466e0f6215cb6cc unauthorized
i tried may tips online but it still not work.
adb confirmation dialog not appearing on nexus 5
adb working on twrp but not showing confirmation dialog on android 6.0 nexus 5
Try revoking all authorizations on the phone and then try adb commands to see if the dialog box appears.
Can't revoke there are no voice for revoking. Anyway I did also deleted the /data/adb/adb_keys but at the end this dialog box won't appear
Debugging is enabled?
Yes it is
Did you try a different computer or operating system?
Maybe this will help: http://forum.xda-developers.com/verizon-lg-g3/help/unable-to-access-adb-t2830087
I am also getting same error but ..
only on one specific rom.
Other roms are working fine.
Tried on win8.1 , win10, ubuntu, mint.
I only use win7 so I can't comment about other operating systems.
parag60288 said:
I am also getting same error but ..
only on one specific rom.
Other roms are working fine.
Tried on win8.1 , win10, ubuntu, mint.
Click to expand...
Click to collapse
I need to test it on another computer
My ROM is marshmallow stock
spupuz said:
I need to test it on another computer
My ROM is marshmallow stock
Click to expand...
Click to collapse
I was having this issue on Pure White rom only....
parag60288 said:
I was having this issue on Pure White rom only....
Click to expand...
Click to collapse
uh it is strange
boh...
tested on another PC it seems to not work...
updated to 6.0.1 and not able to get the adb pop up in order to validate the authorization :|
whoa!! just solved i saw after update to 6.0.1 the revoke all adb permission has reappeared so i delete my /home/myuser/.android diretory on ubuntu and with an adb kill-server and adb usb was able to have the pop-up to appear and grant the permission .. so now it's working
It's strange that you didn't have the option to revoke ADB authorization before the update.
audit13 said:
It's strange that you didn't have the option to revoke ADB authorization before the update.
Click to expand...
Click to collapse
that was my situation
I have always had the option to revoke USB afaik.

Multiwindow mode oxygenos android 8.1

Actually this was working till android nougat but for curiosity i tried it on Android 8.1 and vice versa oxygen os and its working.
What is freeform multiwindow?
You can enable resizable multiple windows of any apps.
Video guide:
https://youtu.be/GoAskAamNNc7
Requirements :-
1)android OS 7 to 8.1 based rom
2)PC
3)WORKING ADB
STEPS:
1)enable usb debugging option
2) install adb drivers (if not installed otherwise u can skip the step)
15 seconds adb installer
https://androidfilehost.com/?fid=95855108297851314
3)create any folder on dextop open it click shift+right click of mouse
3)select open command promt here option
Type these commands
adb devices Then enter
adb shell settings put global enable_freeform_support 1
Then enter reboot
Disconnect u r device and reboot
Then go to Settings >developers option> then enable force activities to be resizable
Thats its
When u opens recents app there u will get multiwindow tab for every app.
Do you knod what command should I use to deactivate it?
Multi window is just split screen which has been native since nougat and they are still resizable.
se7ensde said:
Multi window is just split screen which has been native since nougat and they are still resizable.
Click to expand...
Click to collapse
Split screen is resizable but not in freeform mode, u can not move windows or add multiple apps at same time
se7ensde said:
Multi window is just split screen which has been native since nougat and they are still resizable.
Click to expand...
Click to collapse
Have u seen video then u will understand whats this is?
netgar said:
Do you knod what command should I use to deactivate it?
Click to expand...
Click to collapse
Add 0 instead of 1
pankspoo said:
Actually this was working till android nougat but for curiosity i tried it on Android 8.1 and vice versa oxygen os and its working.
What is freeform multiwindow?
You can enable resizable multiple windows of any apps.
Video guide:
https://youtu.be/GoAskAamNNc7
Requirements :-
1)android OS 7 to 8.1 based rom
2)PC
3)WORKING ADB
STEPS:
1)enable usb debugging option
2) install adb drivers (if not installed otherwise u can skip the step)
15 seconds adb installer
https://androidfilehost.com/?fid=95855108297851314
3)create any folder on dextop open it click shift+right click of mouse
3)select open command promt here option
Type these commands
adb devices Then enter
adb shell settings put global enable_freeform_support 1
Then enter reboot
Disconnect u r device and reboot
Then go to Settings >developers option> then enable force activities to be resizable
Thats its
When u opens recents app there u will get multiwindow tab for every app.
Click to expand...
Click to collapse
Or you can just enable the option in developer settings and reboot, no pc needed...
Rakpere said:
Or you can just enable the option in developer settings and reboot, no pc needed...
Click to expand...
Click to collapse
No its not work. I have tested it personally this thread is not based on assumptions
pankspoo said:
No its not work. I have tested it personally this thread is not based on assumptions
Click to expand...
Click to collapse
Funny cause it works...
Rakpere said:
Funny cause it works...
Click to expand...
Click to collapse
Give the short video with u r proof here
edit: n/m, should have watched the video first. :silly:
Tried it, but it caused SystemUI to fc and reboot, so put it back.
iElvis said:
edit: n/m, should have watched the video first. :silly:
Tried it, but it caused SystemUI to fc and reboot, so put it back.
Click to expand...
Click to collapse
K for me its not giving any fcs
pankspoo said:
K for me its not giving any fcs
Click to expand...
Click to collapse
Could be the rom I'm using (RICE), which I think has some SystemUI tweaks.
iElvis said:
Could be the rom I'm using (RICE), which I think has some SystemUI tweaks.
Click to expand...
Click to collapse
May be but on oos 5.1.9 nothing is like that
Hey, I'm receiving the "error: device not found" on command promt.
This is "freeform" window mode, and it isn't bad. Sadly it's far inferior compared to Samsung's multiwindow mode, in my opinion.

Unlock Pixel gestures on OnePlus 6 with DP3

Requirements:
1) OnePlus 6 with DP3 installed
2) A PC with adb setup
Steps:
1) Make sure you have adb debugging on under developer options in your phone
2) browse to the folder where adb is setup and open terminal by pressing shift key and right click on the mouse
3) connect your phone and check whether it's properly connected by using command adb devices
4) then enter the following command and you'll have the pixel gestures unlocked
adb shell settings put secure swipe_up_to_switch_apps_enabled 1
Disclaimer:
1) will work only if you use oneplus launcher
2) with other launchers you'll get oneplus launcher force close dialogue box when you try to access recents
3)this hack replaces traditional navigation bar with pixel gestures, you still have oneplus gestures available to use
4) to revert back to traditional navigation bar do step 1 to 4 with the following changed code instead
adb shell settings put secure swipe_up_to_switch_apps_enabled 0
credits to XDA news for the original guide
https://www.xda-developers.com/oneplus-6-google-pixel-gestures-android-p/
Sorry but, what is this DP3?
in your opinion, pixel gestures are better than 1+ gestures?
DP 3 it is the latest version of Android 9 ROM beta for OnePlus 6
Envoyé de mon ONEPLUS A6003 en utilisant Tapatalk
limafranco said:
Sorry but, what is this DP3?
in your opinion, pixel gestures are better than 1+ gestures?
Click to expand...
Click to collapse
Developer preview 3 of Android P, I noticed a glitch in navigating with oneplus gestures in Android P, this glitch isn't present in any of the stable oreo builds, the pixel gesture has more things you can do with it and also seemed to remove the transition glitch I was noticing.
kewlest22 said:
Requirements:
1) OnePlus 6 with DP3 installed
2) A PC with adb setup
Steps:
1) Make sure you have adb debugging on under developer options in your phone
2) browse to the folder where adb is setup and open terminal by pressing shift key and right click on the mouse
3) connect your phone and check whether it's properly connected by using command adb devices
4) then enter the following command and you'll have the pixel gestures unlocked
adb shell settings put secure swipe_up_to_switch_apps_enabled 1
Disclaimer:
1) will work only if you use oneplus launcher
2) with other launchers you'll get oneplus launcher force close dialogue box when you try to access recents
3)this hack replaces traditional navigation bar with pixel gestures, you still have oneplus gestures available to use
4) to revert back to traditional navigation bar do step 1 to 4 with the following changed code instead
adb shell settings put secure swipe_up_to_switch_apps_enabled 0
hit thanks if it helps you ?
Click to expand...
Click to collapse
If you're going to post stuff like this then please give credits to the source instead of asking for thanks.
XDA News..... https://www.xda-developers.com/oneplus-6-google-pixel-gestures-android-p/
Is there a way to do these commands in my phone? For nothing I my computer would recognize my phone.
biohaz55 said:
If you're going to post stuff like this then please give credits to the source instead of asking for thanks.
XDA News..... https://www.xda-developers.com/oneplus-6-google-pixel-gestures-android-p/
Click to expand...
Click to collapse
necessary changes done ✌? thanks for pointing it out
kewlest22 said:
Requirements:
1) OnePlus 6 with DP3 installed
2) A PC with adb setup
Steps:
1) Make sure you have adb debugging on under developer options in your phone
2) browse to the folder where adb is setup and open terminal by pressing shift key and right click on the mouse
3) connect your phone and check whether it's properly connected by using command adb devices
4) then enter the following command and you'll have the pixel gestures unlocked
adb shell settings put secure swipe_up_to_switch_apps_enabled 1
Disclaimer:
1) will work only if you use oneplus launcher
2) with other launchers you'll get oneplus launcher force close dialogue box when you try to access recents
3)this hack replaces traditional navigation bar with pixel gestures, you still have oneplus gestures available to use
4) to revert back to traditional navigation bar do step 1 to 4 with the following changed code instead
adb shell settings put secure swipe_up_to_switch_apps_enabled 0
credits to XDA news for the original guide
https://www.xda-developers.com/oneplus-6-google-pixel-gestures-android-p/
Click to expand...
Click to collapse
ddaharu said:
Is there a way to do these commands in my phone? For nothing I my computer would recognize my phone.
Click to expand...
Click to collapse
Quote.. Is there a way to do it from terminal emulator? Tried but not working in that synthax
Hitman478™ said:
Quote.. Is there a way to do it from terminal emulator? Tried but not working in that synthax
Click to expand...
Click to collapse
I don't think so no!
Hitman478™ said:
Quote.. Is there a way to do it from terminal emulator? Tried but not working in that synthax
Click to expand...
Click to collapse
kewlest22 said:
I don't think so no!
Click to expand...
Click to collapse
Yes it worked. I used the app "terminal emulator"
First command: su
This will grant terminal emulator root permission.
Then this command: settings put secure swipe_up_to_switch_apps_enabled 1
That's it.
ddaharu said:
Yes it worked. I used the app "terminal emulator"
First command: su
This will grant terminal emulator root permission.
Then this command: settings put secure swipe_up_to_switch_apps_enabled 1
That's it.
Click to expand...
Click to collapse
that'd be for rooted users ??
kewlest22 said:
that'd be for rooted users ??
Click to expand...
Click to collapse
Ohh right.
Because my phone is not being recognized as an adb device for some reason..... That was my alternative.
ddaharu said:
Yes it worked. I used the app "terminal emulator"
First command: su
This will grant terminal emulator root permission.
Then this command: settings put secure swipe_up_to_switch_apps_enabled 1
That's it.
Click to expand...
Click to collapse
Not working for me
EDIT: re-done and now it's working but don't ask me what i make different from before
EDIT2: need to do "su" twice so is:
Su
Su
settings put secure swipe_up_to_switch_apps_enabled 1
Then it's working
Hitman478™ said:
Not working for me
EDIT: re-done and now it's working but don't ask me what i make different from before
EDIT2: need to do "su" twice so is:
Su
Su
settings put secure swipe_up_to_switch_apps_enabled 1
Then it's working
Click to expand...
Click to collapse
Nice :highfive:
ddaharu said:
Ohh right.
Because my phone is not being recognized as an adb device for some reason..... That was my alternative.
Click to expand...
Click to collapse
U have to enable developer option and install proper adb drivers.
Connect device when its on and not in fastboot mode
oneplus 6 dp3
no root
no xda gesture installer
use oneplus launcher only.
no pixel launcher ?
how to active this features ??
See post 1
brmbjn said:
oneplus 6 dp3
no root
no xda gesture installer
use oneplus launcher only.
no pixel launcher ?
how to active this features ??
Click to expand...
Click to collapse
Envoyé de mon ONEPLUS A6003 en utilisant Tapatalk
sebfar said:
See post 1
Envoyé de mon ONEPLUS A6003 en utilisant Tapatalk
Click to expand...
Click to collapse
I know but not work at me.
Any solution for it ?
What version of oneplus launcher must use ? 2.5.xxx or 3.0
brmbjn said:
I know but not work at me.
Any solution for it ?
What version of oneplus launcher must use ? 2.5.xxx or 3.0
Click to expand...
Click to collapse
3.0
kewlest22 said:
3.0
Click to expand...
Click to collapse
My laucher version is 2.5. i cannot update to 3.0 ? How to fix it ?

Question Regarding the S22 Ultra's screen calibration

Which one is better overall? Basic or Natural? Does anyone have a colorimeter to measure the S22 Ultra's screen calibration on basic and natural? Basic can be enabled via adb using this command:
adb shell settings put system screen_mode_setting 2
Here is a link discussing color saturation and accuracy for the S21. This is where I got the command from. The same command works on the S22 Ultra.
https://forum.xda-developers.com/t/color-saturation-accuracy.4191115/
For best color rendering in most lighting leave it in natural mode.
For viewing in sunlight (which isn't a good idea) vivid mode will lessen the wash out effect.
https://www.reddit.com/r/samsung/comments/jlik2w
It doesn't work on my S22 Ultra Exynos model (I already used ADB mode with this phone and it worked so it's not that)... When i put your line on ADB with the choice 1 at the end of the line, i got this :
/system/bin/sh: adb: inaccessible or not found
Any idea ?
Can confirm that does work for me. I used to like the AMOLED Photo profile on my S10. It's a good balance between Vivid and Natural.
Thanks, I've got AMOLED Photo on my S22 Ultra now.
Maybe @dr. Ketan will build it inside as default in his ROM:
"AMOLED Photo" Mode - why not, when it looks best?
or at least a nice way to choose ourselves.
gregou said:
It doesn't work on my S22 Ultra Exynos model (I already used ADB mode with this phone and it worked so it's not that)... When i put your line on ADB with the choice 1 at the end of the line, i got this :
/system/bin/sh: adb: inaccessible or not found
Any idea ?
Click to expand...
Click to collapse
Are you writing the "adb shell" line on the pc ? This is a error when trying to run adb on the mobile itself, which is wrong.
||||| said:
Maybe @dr. Ketan will build it inside as default in his ROM:
"AMOLED Photo" Mode - why not, when it looks best?
or at least a nice way to choose ourselves.
Click to expand...
Click to collapse
If you have root you are the king. Then you can change the system settings database yourself very easily. No need for adb at all. Adb is needed when you don't have Root.
DaOldMan said:
Are you writing the "adb shell" line on the pc ? This is a error when trying to run adb on the mobile itself, which is wrong.
Click to expand...
Click to collapse
No i'm writing it from my PC
gregou said:
No i'm writing it from my PC
Click to expand...
Click to collapse
Show a screenshot of how it's written.
blackhawk said:
For best color rendering in most lighting leave it in natural mode.
For viewing in sunlight (which isn't a good idea) vivid mode will lessen the wash out effect.
https://www.reddit.com/r/samsung/comments/jlik2w
Click to expand...
Click to collapse
Thanks so much for this. I like AMOLED photo, a nice balance between vivid and natural.
DaOldMan said:
Show a screenshot of how it's written.
Click to expand...
Click to collapse
Here it is :
gregou said:
Here it is :
Click to expand...
Click to collapse
Can you type adb devices? Does it report back your device?
blackhawk said:
For best color rendering in most lighting leave it in natural mode.
For viewing in sunlight (which isn't a good idea) vivid mode will lessen the wash out effect.
https://www.reddit.com/r/samsung/comments/jlik2w
Click to expand...
Click to collapse
Yes, but my question was whether basic or natural was better overall? On the S21, the colors were more accurate on basic but the gamma was the same as natural.
IrrelevantUsername said:
Can you type adb devices? Does it report back your device?
Click to expand...
Click to collapse
Yes it does, i did it already.
I'm on Windows 11, maybe ADB commands doesn't works perfectly.. don't know lol
IrrelevantUsername said:
Yes, but my question was whether basic or natural was better overall? On the S21, the colors were more accurate on basic but the gamma was the same as natural.
Click to expand...
Click to collapse
Natural is pretty much spot on with my N10+.
I used a color calibration chart to check the throughput from cam to display. Vivid blows out the red channel especially.
The only way to tell if basic is better than natural is to test it but I doubt Samsung wouldn't put their best foot forward with the normal selection modes.
gregou said:
Here it is :
Click to expand...
Click to collapse
Your error is obvious. You decided for whatever weird reason to use "adb shell" as the first command and then IN THE ADB SHELL do again the "adb shell settings put system screen_mode_setting 1". This is TOTALY wrong.
You should not use "adb shell" at all. It's already included in the command line. If you enter the adb shell you are already in ADB so you can't try to use a command that starts with "adb shell" again inside to run itself .
I hope this is understandable. So connect the mobile, open cmd, go to the "c:\users\Longs\S22.....\platform-tools" directory as before. There just type "adb shell settings put system screen_mode_setting 1". You will be surprised as now it will work. Again don't type "adb shell" before using the full command at all .
If you like using adb shell by it's own then you can try typing inside "settings put system screen_mode_setting 1". This should work as well.
Cheers !
DaOldMan said:
Your error is obvious. You decided for whatever weird reason to use "adb shell" as the first command and then IN THE ADB SHELL do again the "adb shell settings put system screen_mode_setting 1". This is TOTALY wrong.
You should not use "adb shell" at all. It's already included in the command line. If you enter the adb shell you are already in ADB so you can't try to use a command that starts with "adb shell" again inside to run itself .
I hope this is understandable. So connect the mobile, open cmd, go to the "c:\users\Longs\S22.....\platform-tools" directory as before. There just type "adb shell settings put system screen_mode_setting 1". You will be surprised as now it will work. Again don't type "adb shell" before using the full command at all .
If you like using adb shell by it's own then you can try typing inside "settings put system screen_mode_setting 1". This should work as well.
Cheers !
Click to expand...
Click to collapse
Yes it worked ! thanks for the advice Dunno why i did this mistake... silly me
DaOldMan said:
Your error is obvious. You decided for whatever weird reason to use "adb shell" as the first command and then IN THE ADB SHELL do again the "adb shell settings put system screen_mode_setting 1". This is TOTALY wrong.
You should not use "adb shell" at all. It's already included in the command line. If you enter the adb shell you are already in ADB so you can't try to use a command that starts with "adb shell" again inside to run itself .
I hope this is understandable. So connect the mobile, open cmd, go to the "c:\users\Longs\S22.....\platform-tools" directory as before. There just type "adb shell settings put system screen_mode_setting 1". You will be surprised as now it will work. Again don't type "adb shell" before using the full command at all .
If you like using adb shell by it's own then you can try typing inside "settings put system screen_mode_setting 1". This should work as well.
Cheers !
Click to expand...
Click to collapse
Exacly
gregou said:
Yes it worked ! thanks for the advice Dunno why i did this mistake... silly me
Click to expand...
Click to collapse
I was sure this is your error and that's why I asked for the screenshot to be sure. I am happy it works. Have fun mate !

Categories

Resources