[Testers] for the following roms - Sprint LG Optimus G

HI Everyone,
Can some please test these two zips.
http://goo.im/devs/AdriVelazquez/Roms/Nightlies/Ports/CM9%20Test
And report back what happens.
If you run into an error, please list exactly what it says.
Also, if you want to be extremely helpful, get a logcat during the bootup if it gets stuck on a boot loop.
Thanks in Advance

AdriVelazquez said:
HI Everyone,
Can some please test these two zips.
http://goo.im/devs/AdriVelazquez/Roms/Nightlies/Ports/CM9%20Test
And report back what happens.
If you run into an error, please list exactly what it says.
Also, if you want to be extremely helpful, get a logcat during the bootup if it gets stuck on a boot loop.
Thanks in Advance
Click to expand...
Click to collapse
any risk of hard boot? if not im down. also how do i get logcat?

javskies said:
any risk of hard boot? if not im down. also how do i get logcat?
Click to expand...
Click to collapse
No risk for hard-boot.
And you can get logcat
by typing in terminal adb
Code:
adb logcat
or for a txt file
Code:
adb logcat > log.txt
Your phone needs to be plugged into the computer.

AdriVelazquez said:
No risk for hard-boot.
And you can get logcat
by typing in terminal adb
Code:
adb logcat
or for a txt file
Code:
adb logcat > log.txt
Your phone needs to be plugged into the computer.
Click to expand...
Click to collapse
ok im downloading now. so i just type that in when i open terminal on my comp?
---------- Post added at 03:39 PM ---------- Previous post was at 02:41 PM ----------
both soft bricked. couldnt get the logcat pulled. it kept saying adb not recognized command

javskies said:
ok im downloading now. so i just type that in when i open terminal on my comp?
---------- Post added at 03:39 PM ---------- Previous post was at 02:41 PM ----------
both soft bricked. couldnt get the logcat pulled. it kept saying adb not recognized command
Click to expand...
Click to collapse
Did you do it under android tools folder?
If not then right click + shift folder on explorer and command promt here

Newboot - no go- just LG logo over and over - logcat is blank
Original boots to CM9 continuous - logcat /sbin/sh: exec: line 1: logcat: not found
Hope this helps

I'm such an idiot!! Here's the logcat. I just don't know which one it's for. I think it's for Originalboot CM9.
edit: Just tried NewbootCM9 again, and same as above. No logcat
edit 2: ADB says "waiting for device" when trying to get logcat for NewBoot

Thanks! This is definitely useful.
Sent from my LG-LS970 using xda premium

Related

Kindle Fire root issues

Hi everyone, a buddy of mine suggested this site could be helpful for someone with my issues (and I see there are a few like me...), so here goes...
I've been wanting to root my kindle for a bit now and decided to go for it. I'm not very technologically saavy, and am usually careful not to jump into something that seems out of my league. So anyways I was following the seemly straight-forward instructions here:
http://liliputing.com/2012/05/how-to-root-a-kindle-fire-with-software-version-6-3-1.html
and initially things went fine. However, when I clicked on option 2 "Install Permanent Root with Superuser." after a few minutes into this process (I didn't think to make a note of what it said) it stopped with some error. Since then my Kindle has been stuck on startup screen, I can turn it off and on, just not go anywhere. Since this point I haven't been able to get my Kindle connected with the KFU. I also have attempted to reinstall the drivers, but I get error messages.
I've read through most of the "before asking for troubleshooting help" here: http://forum.xda-developers.com/showthread.php?t=1644970, and I think I have a better idea of everything than before...but this isn't really my area of expertise for sure. But somethings I understand, others just make me more mixed up.
If anyone could lend a hand, that would be great...I'd certainly be grateful and if you need any more information than I have provided...please let me know!
Thanks,
Andrew
Andrew your just stuck in fastboot and your drivers may be a little wacked out wish you knew the error. Shift plus right click on the tools folder in kfu the select open command window here type
Code:
fastboot devices
hit enter if you see a string of numbers this shows your kindle in fastboot then type
Code:
fastboot -i 0x1949 oem idme bootmode 4000
hit enter then type
Code:
fastboot reboot
it should then boot normal hopefully
Thepooch said:
Andrew your just stuck in fastboot and your drivers may be a little wacked out wish you knew the error. Shift plus right click on the tools folder in kfu the select open command window here type
Code:
fastboot devices
hit enter if you see a string of numbers this shows your kindle in fastboot then type
Code:
fastboot -i 0x1949 oem idme bootmode 4000
hit enter then type
Code:
fastboot reboot
it should then boot normal hopefully
Click to expand...
Click to collapse
I didn't see any numbers, and after typing "fastboot -i etc..." it said "waiting for device"
I attached a pic of the what I was looking at.
Hold the power button down for 1 min then plug it to your computer see if it installs drivers post back
---------- Post added at 08:02 PM ---------- Previous post was at 07:46 PM ----------
I have sent you a private message but we should also continue this thread for the benefit of others
Thepooch said:
Hold the power button down for 1 min then plug it to your computer see if it installs drivers post back
---------- Post added at 08:02 PM ---------- Previous post was at 07:46 PM ----------
I have sent you a private message but we should also continue this thread for the benefit of others
Click to expand...
Click to collapse
Wooohhooo! Thanks for the help!

[Q] What to do if someone asks for my specific problem log file?

Folks, i really don't know what to do to get a specific problem log file to be sent/showed to someone to fix my problem, any help or suggestions will be really appreciated here
If you just had a hard reboot, once booted up, from pc
Adb pull /proc/last_kmsg
This will get last kmsg file related to the last boot session to your pc.
If no hard reboots but freezes etc, then
Adb shell dmesg > /sdcard/dmesg.txt
To see what's been going on since the boot at kernel level. File gets created on sdcard. Use
Adb pull /sdcard/dmesg.txt
To get it to your pc.
To get a log of something, before trying it, start the logcat with
Adb logcat > logcat.txt
File will be created on the pc.
This is from my post 6843 in official cm10 thread. You can also use
Adb shell cat /proc/kmsg > /sdcard/kmsg.txt
To see kernel logs since last boot.
Sent from my ASUS Transformer Pad TF700T using Tapatalk 2
Edit: /proc was missing 3 lines above
eyosen said:
If you just had a hard reboot, once booted up, from pc
Adb pull /proc/last_kmsg
This will get last kmsg file related to the last boot session to your pc.
If no hard reboots but freezes etc, then
Adb shell dmesg > /sdcard/dmesg.txt
To see what's been going on since the boot at kernel level. File gets created on sdcard. Use
Adb pull /sdcard/dmesg.txt
To get it to your pc.
To get a log of something, before trying it, start the logcat with
Adb logcat > logcat.txt
File will be created on the pc.
This is from my post 6843 in official cm10 thread. You can also use
Adb shell cat /kmsg > /sdcard/kmsg.txt
To see kernel logs since last boot.
Sent from my ASUS Transformer Pad TF700T using Tapatalk 2
Click to expand...
Click to collapse
thanks eyosen you are the best
what if i already rebooted it several times due to weird signal loss? please check this http://forum.xda-developers.com/showthread.php?p=32791585#post32791585
does this means i've lost the latest log? if no, then how to extract the specific problem log from it such as the signal loss? or shall i send the whole log?
Hossam.Abdelsalam said:
thanks eyosen you are the best
what if i already rebooted it several times due to weird signal loss? please check this http://forum.xda-developers.com/showthread.php?p=32791585#post32791585
does this means i've lost the latest log? if no, then how to extract the specific problem log from it such as the signal loss? or shall i send the whole log?
Click to expand...
Click to collapse
use "adb logcat -b radio"
Press the thanks button if you want to thank me
You are welcome.
Just send the whole log. Best practice is to post it to pastebin and post the link in the forum.
After every reboot you will lose the previous last_ksmg.
Sent from a gadget on my balcony.
wcypierre said:
use "adb logcat -b radio"
Press the thanks button if you want to thank me
Click to expand...
Click to collapse
i already pressed it
but it seems this shows you the log at the run time, but what am trying to get is the log of my weird signal loss for incidents happened yesterday, is this even possible?
No that's not possible. You can start a logcat, repeat the steps that caused the problem, after the problem , post logcat and kmsg.
Sent from a gadget on my balcony.
Hossam.Abdelsalam said:
i already pressed it
but it seems this shows you the log at the run time, but what am trying to get is the log of my weird signal loss for incidents happened yesterday, is this even possible?
Click to expand...
Click to collapse
well, it should be able to trace back if the time duration is not that long, but you can just try and do what eyosen had suggested

[Q] KIndle Fire D01400 TWRP recovery problems

Hello, this is my first post on this forum, though I have lurked on XDA since as far back as my droid eris.
I have looked around the kindle fire forum for the answers I seek, but I have not seen a thread that helps. If I am asking a redundant question, please kindly show me the relevant thread(s) and I will read them.
I was at a small computer store my friend owns in our tiny little town (white hat computer solutions minersville, pa), when a mutual friend and former classmate of ours brought us a Kindle Fire D01400 with a cracked screen he bought off ebay. the previous owner claimed it worked despite the cracked screen, From a hardware standpoint that is quite correct, as you can see everything yet, and the touchscreen responds.
However, they neglected to mention they were selling one that already was modified, it is running TWRP 2.4.4.0 and has an improperly flashed ROM on it ( the stock keyboard crashes, home screen soft key does nothing, gmail works, but google play store does not). sideloading a keyboard app on fixed the keyboard, but the gapps with the exception of gmail don't function. I figured doing a wipe and flash of a new rom and gapps would be a good starting point to attempt to fix this problem.
However when I go into TWRP recovery and try to wipe the system, dalvik, or cache, the operation fails.
I have tried taking the TWRP manager app and sideloading it and using that to update to the latest TWRP. but the version number remains at 2.7.0.1
So my question is, with the above details kept in mind: How exactly do I go about fixing this tablet and making it a functional piece of android hardware for my friend/customer?
Try my flash able twrp.zips thread http://forum.xda-developers.com/showthread.php?t=2811253
Kindle Fire Flashable Recoveries TWRP/COTR/CWM[2014]
Sent from my XT862 using Tapatalk
sd_shadow said:
Try my flash able twrp.zips thread http://forum.xda-developers.com/showthread.php?t=2811253
Kindle Fire Flashable Recoveries TWRP/COTR/CWM[2014]
Sent from my XT862 using Tapatalk
Click to expand...
Click to collapse
Downloading and trying it now. Thanks, I usually do my best to find relevant threads before posting, I am not sure how I missed that one.
Will post back with results as soon as I am done
EDIT:
Flashed it to twrp 2.6.1.0 otter I still can't use the wipe option. tried factory reset figuring i could just push the rom and gapps down using adb again, but factory reset also failed. is there a permission I can reset using adb?
vstrenko said:
I am not sure how I missed that one.
Click to expand...
Click to collapse
It's not stickied and 'flashable recoveries' can be misleading, but that is what they are called by many.
---------- Post added at 02:59 PM ---------- Previous post was at 02:05 PM ----------
vstrenko said:
Downloading and trying it now. Thanks, I usually do my best to find relevant threads before posting, I am not sure how I missed that one.
Will post back with results as soon as I am done
EDIT:
Flashed it to twrp 2.6.1.0 otter I still can't use the wipe option. tried factory reset figuring i could just push the rom and gapps down using adb again, but factory reset also failed. is there a permission I can reset using adb?
Click to expand...
Click to collapse
If you edit your post i don't get notified.
sorry I didn't realize, I lurk more than I post
vstrenko said:
sorry I didn't realize, I lurk more than I post
Click to expand...
Click to collapse
what is the rom version currently installed
full name listed in setting>about device(maybe about phone or tablet)>system version
JellyBeer-v4.33-23072013-190721
vstrenko said:
JellyBeer-v4.33-23072013-190721
Click to expand...
Click to collapse
have you used adb.exe or fastboot.exe before?
---------- Post added at 03:26 PM ---------- Previous post was at 03:25 PM ----------
windows 7 or 8?
I have used adb before with my acer iconia a500 and my droid3
windows 7 64bit is my OS
vstrenko said:
I have used adb before with my acer iconia a500 and my droid3
windows 7 64bit is my OS
Click to expand...
Click to collapse
use Install.Drivers.bat from Kindle Fire Utility if you have not yet.
reboot pc, check device manager with kindle connected to PC
should be listed as an Android Phone>adb interface
if OK then
boot Kindle to TWRP
in command prompt on PC
Code:
adb devices
should get something like
Code:
123456789 recovery
if you get waiting for device for more than a few secs or or some kind of bad command error post it.
---------- Post added at 04:15 PM ---------- Previous post was at 04:03 PM ----------
if response is good
Code:
adb shell "cat /proc/cmdline"
sd_shadow said:
use Install.Drivers.bat from Kindle Fire Utility if you have not yet.
reboot pc, check device manager with kindle connected to PC
should be listed as an Android Phone>adb interface
if OK then
boot Kindle to TWRP
in command prompt on PC
Code:
adb devices
should get something like
Code:
123456789 recovery
if you get waiting for device for more than a few secs or or some kind of bad command error post it.
---------- Post added at 04:15 PM ---------- Previous post was at 04:03 PM ----------
if response is good
Code:
adb shell "cat /proc/cmdline"
Click to expand...
Click to collapse
When it is booted into android, it shows in adb as
Code:
list of devices attached
0123456789ABCDEF device
When I boot into TWRP and execute adb devices i get
Code:
list of devices attached
with no further error messages
In TWRP on the second row at the top, along with the battery level (100%) and time 5:26pm, it says SIMULATING ACTIONS in all caps. is it supposed to say that or should it say something else
vstrenko said:
When it is booted into android, it shows in adb as
Code:
list of devices attached
0123456789ABCDEF device
When I boot into TWRP and execute adb devices i get
Code:
list of devices attached
with no further error messages
In TWRP on the second row at the top, along with the battery level (100%) and time 5:26pm, it says SIMULATING ACTIONS in all caps. is it supposed to say that or should it say something else
Click to expand...
Click to collapse
ok
try
with Kindle off, but connected to PC
Code:
fastboot devices
then boot Kindle
sd_shadow said:
ok
try
with Kindle off, but connected to PC
Code:
fastboot devices
then boot Kindle
Click to expand...
Click to collapse
fastboot reports nothing at all when i try that, when i type that in it pauses for a fraction of a second then i am left with a prompt on a new line to enter a command
Code:
C:\Windows\system32\> fastboot devices
C:\Windows\system32\>
vstrenko said:
fastboot reports nothing at all when i try that, when i type that in it pauses for a fraction of a second then i am left with a prompt on a new line to enter a command
Code:
C:\Windows\system32\> fastboot devices
C:\Windows\system32\>
Click to expand...
Click to collapse
download adb-fastboot.zip
Create a folder in C drive named adb (c:adb)
Unzip adb-fastboot.zip
Copy adb/fastboot files (AdbWinUsbApi.dll, AdbWinApi.dll, adb.exe, fastboot.exe) to folder
Connect kindle to pc, power off kindle
Open Command Prompt
Enter Commands
Code:
cd\adb
Code:
fastboot devices
power on kindle
sd_shadow said:
download adb-fastboot.zip
Create a folder in C drive named adb (c:adb)
Unzip adb-fastboot.zip
Copy adb/fastboot files (AdbWinUsbApi.dll, AdbWinApi.dll, adb.exe, fastboot.exe) to folder
Connect kindle to pc, power off kindle
Open Command Prompt
Enter Commands
Code:
cd\adb
Code:
fastboot devices
power on kindle
Click to expand...
Click to collapse
It is on when I use fastboot devices from a command prompt.
that is what I get as a result
vstrenko said:
It is on when I use fastboot devices from a command prompt.
that is what I get as a result
Click to expand...
Click to collapse
you may not have enough posts to link images, if that was your intent
try sending a pm or email
---------- Post added at 07:02 PM ---------- Previous post was at 07:00 PM ----------
Kindle should be off when entering fastboot commands, because kindle is in fastboot mode only a short time when powering on
sd_shadow said:
you may not have enough posts to link images, if that was your intent
try sending a pm or email
---------- Post added at 07:02 PM ---------- Previous post was at 07:00 PM ----------
Kindle should be off when entering fastboot commands, because kindle is in fastboot mode only a short time when powering on
Click to expand...
Click to collapse
Previous owner of the device had the TWRP recovery set to use simulation mode. I was unaware that was even an option since i was not familar with TWRP( my previous android flashing experiences used clockwork) after unchecking those boxes in the advanced settings, I was successfully able to flash a rom and gapps, and everything was perfect after that.
sorry for wasting so much time on this, I really missed something simple on this one.
vstrenko said:
Previous owner of the device had the TWRP recovery set to use simulation mode. I was unaware that was even an option since i was not familar with TWRP( my previous android flashing experiences used clockwork) after unchecking those boxes in the advanced settings, I was successfully able to flash a rom and gapps, and everything was perfect after that.
sorry for wasting so much time on this, I really missed something simple on this one.
Click to expand...
Click to collapse
no problem, I've never used the simulation options before...

.qcn or .xqcn file for zs570kl none pro.

anyone there who can spare me a .qcn or .xqcn file for asus zenfone 3 deluxe pls?
I'll try to make a backup right now
---------- Post added at 08:47 PM ---------- Previous post was at 08:00 PM ----------
I tried but i cant get my phone into diagnostic modd which is need to make the backup if you can provide some information on how to do so i will totally get it done for you
dcraffam said:
I'll try to make a backup right now
---------- Post added at 08:47 PM ---------- Previous post was at 08:00 PM ----------
I tried but i cant get my phone into diagnostic modd which is need to make the backup if you can provide some information on how to do so i will totally get it done for you
Click to expand...
Click to collapse
thank you so much man! :good:
dcraffam said:
I'll try to make a backup right now
---------- Post added at 08:47 PM ---------- Previous post was at 08:00 PM ----------
I tried but i cant get my phone into diagnostic modd which is need to make the backup if you can provide some information on how to do so i will totally get it done for you
Click to expand...
Click to collapse
plug your phone to computer then turn on adb mode. when youre on adb type adb shell then su, then type this
setprop sys.usb.config diag,adb
there should be a adb msg again on your phone asking you to press ok. then let your pc or laptop install the driver for diagnostic. then open QPST go to software download. there's those stuffs in there telling you to back up or restore your QCN. back it up for me pls in the format of .qcn and .xqcn and don't rename the extension file cuz it will give me an error. thank you man!
geezazkrays said:
plug your phone to computer then turn on adb mode. when youre on adb type adb shell then su, then type this
setprop sys.usb.config diag,adb
there should be a adb msg again on your phone asking you to press ok. then let your pc or laptop install the driver for diagnostic. then open QPST go to software download. there's those stuffs in there telling you to back up or restore your QCN. back it up for me pls in the format of .qcn and .xqcn and don't rename the extension file cuz it will give me an error. thank you man!
Click to expand...
Click to collapse
Im not shure if asus has it blocked or what but i am rooted running magisk and i already tried that befor i made that last post also i read somewhere type in *#*#7717117#*#* or something like that Nd it also did not work but i will try it with terminal emulator on my phone for the sake of it
dcraffam said:
Im not shure if asus has it blocked or what but i am rooted running magisk and i already tried that befor i made that last post also i read somewhere type in *#*#7717117#*#* or something like that Nd it also did not work but i will try it with terminal emulator on my phone for the sake of it
Click to expand...
Click to collapse
you didn't lock your bootloader right? if yes. asus had just shipped out their unlocker tool for 8.0 its on their official website. but you said your using magisk. anyway try to disable your selinux to permissive?
dcraffam said:
Im not shure if asus has it blocked or what but i am rooted running magisk and i already tried that befor i made that last post also i read somewhere type in *#*#7717117#*#* or something like that Nd it also did not work but i will try it with terminal emulator on my phone for the sake of it
Click to expand...
Click to collapse
or try to go to smmi. open your calculator and type .12345+=
dcraffam said:
Im not shure if asus has it blocked or what but i am rooted running magisk and i already tried that befor i made that last post also i read somewhere type in *#*#7717117#*#* or something like that Nd it also did not work but i will try it with terminal emulator on my phone for the sake of it
Click to expand...
Click to collapse
dude i forgot that you can back up your qcn using qfil. put your phone in diagnostic mode then open qfil then tools. its there i even tried it. but eventhough how many times im goin to flash a firmware i still going to get same result. cuz even my radio got messed up.

Add Mobile Data and Wifi HotSpot toggle without root

Don't want to root your phone but you still want to tweak it? No trouble, you can still use adb shell to change a few settings.
-First, follow this guide to install ADB on your Windows PC: https://www.xda-developers.com/install-adb-windows-macos-linux/
-Then, you have to plug your phone to your PC with a USB cable.
-Finally, launch a command line and use this command:
Code:
adb shell settings put secure sysui_qs_tiles "Wifi,SoundMode,Bluetooth,RotationLock,Flashlight,Dnd,custom(com.android.settings/com.samsung.android.settings.qstile.PowerSavingTile),BlueLightFilter,Location,custom(com.samsung.android.app.aodservice/.settings.AODTileService),custom(com.samsung.android.smartmirroring/.tile.SmartMirroringTile),AirplaneMode,custom(com.sec.android.app.soundalive/.DolbyTile),WorkMode,MobileData,Hotspot"
We also may have a way to enable Call Recorder on our phone with ADB Shell but, I'm still trying to figure out how it could be done.
Nico3d3 said:
Don't want to root your phone but you still want to tweak it? No trouble, you can still use adb shell to change a few settings.
-First, follow this guide to install ADB on your Windows PC: https://www.xda-developers.com/install-adb-windows-macos-linux/
-Then, you have to plug your phone to your PC with a USB cable.
-Finally, launch a command line and use this command:
We also may have a way to enable Call Recorder on our phone with ADB Shell but, I'm still trying to figure out how it could be done.
Click to expand...
Click to collapse
This is great for a530w users cuz those icons are missing, thanks for sharing!
Even though i already found my own way with my systemui mod
---------- Post added at 04:30 AM ---------- Previous post was at 04:27 AM ----------
FOR FREEDOM MOBILE USERS AND OTHER CARRIERS THAT SUPPORT VOLTE
DO THIS AND EVEN VOLTE TOGGLE WILL SHOW
adb shell settings put secure sysui_qs_tiles "Wifi,SoundMode,Bluetooth,RotationLock,Flashlight,Dnd,custom(com.android.settings/com.samsung.android.settings.qstile.PowerSavingTile),BlueLightFilter,Location,custom(com.samsung.android.app.aodservice/.settings.AODTileService),custom(com.samsung.android.smartmirroring/.tile.SmartMirroringTile),AirplaneMode,custom(com.sec.android.app.soundalive/.DolbyTile),WorkMode,MobileData,Hotspot,VoLte"
thank me later
[/COLOR]I have the A530W from Fido, I tried and got this error
/system/bin/sh: syntax error: '(' unexpected
KAPABLE-K said:
[/COLOR]I have the A530W from Fido, I tried and got this error
/system/bin/sh: syntax error: '(' unexpected
Click to expand...
Click to collapse
You probably forgot a quotation mark. Please check cmd has been wrote correctly.
I figured it out, I had to do "adb shell" first then send the command and everything worked.
587.saboor said:
This is great for a530w users cuz those icons are missing, thanks for sharing!
Even though i already found my own way with my systemui mod
---------- Post added at 04:30 AM ---------- Previous post was at 04:27 AM ----------
FOR FREEDOM MOBILE USERS AND OTHER CARRIERS THAT SUPPORT VOLTE
DO THIS AND EVEN VOLTE TOGGLE WILL SHOW
adb shell settings put secure sysui_qs_tiles "Wifi,SoundMode,Bluetooth,RotationLock,Flashlight,Dnd,custom(com.android.settings/com.samsung.android.settings.qstile.PowerSavingTile),BlueLightFilter,Location,custom(com.samsung.android.app.aodservice/.settings.AODTileService),custom(com.samsung.android.smartmirroring/.tile.SmartMirroringTile),AirplaneMode,custom(com.sec.android.app.soundalive/.DolbyTile),WorkMode,MobileData,Hotspot,VoLte"
thank me later
Click to expand...
Click to collapse
Can i use it in a530f
Hovo01 said:
Can i use it in a530f
Click to expand...
Click to collapse
yes
I will not lost my warranty yes?
---------- Post added at 06:01 PM ---------- Previous post was at 06:01 PM ----------
587.saboor said:
yes
Click to expand...
Click to collapse
Thanks do you have other tweaks with adb
Hovo01 said:
I will not lost my warranty yes?
---------- Post added at 06:01 PM ---------- Previous post was at 06:01 PM ----------
Thanks do you have other tweaks with adb
Click to expand...
Click to collapse
you will not lose your warranty
no
[email protected]:~/Downloads/platform-tools-2$ sudo ./adb shell
jackpotlte:/ $ settings put secure sysui_qs_tiles "Wifi,SoundMode,Bluetooth,RotationLock,Flashlight, Dnd,custom(com.android.settings/com.samsung.android.settings.qstile.PowerSavingTil e),BlueLightFilter,Locati>
),custom(com.samsung.android.smartmirroring/.tile.SmartMirroringTile),AirplaneMode,custom(com.sec.android.app.soundalive/.DolbyTile),WorkMode,MobileData,Hotspot" <
jackpotlte:/ $
What can I expect here? I see nothing happen ... mac os as you can see
Robert978 said:
What can I expect here? I see nothing happen ... mac os as you can see
Click to expand...
Click to collapse
There is no output with that cmd. To see if it worked, check if you can now see the new toggles in Quick Panel.
Nico3d3 said:
Don't want to root your phone but you still want to tweak it? No trouble, you can still use adb shell to change a few settings.
-First, follow this guide to install ADB on your Windows PC: https://www.xda-developers.com/install-adb-windows-macos-linux/
-Then, you have to plug your phone to your PC with a USB cable.
-Finally, launch a command line and use this command:
Code:
adb shell settings put secure sysui_qs_tiles "Wifi,SoundMode,Bluetooth,RotationLock,Flashlight,Dnd,custom(com.android.settings/com.samsung.android.settings.qstile.PowerSavingTile),BlueLightFilter,Location,custom(com.samsung.android.app.aodservice/.settings.AODTileService),custom(com.samsung.android.smartmirroring/.tile.SmartMirroringTile),AirplaneMode,custom(com.sec.android.app.soundalive/.DolbyTile),WorkMode,MobileData,Hotspot"
We also may have a way to enable Call Recorder on our phone with ADB Shell but, I'm still trying to figure out how it could be done.
Click to expand...
Click to collapse
looking forward to that native call recorder...
can we enable fm radio app with this if it isn't there?

Categories

Resources