[Guidance] Enable SIM hot-plug support without root - Sony Xperia 10 II Guides, News, & Discussion

Run this with adb-tools
Code:
adb shell pm disable-user com.sonymobile.uiccdetection
Restore:
Code:
adb shell pm enable com.sonymobile.uiccdetection
Remenber to restore it if you plan to change your SIM card.

Thanks! I really appreciate this command! I always hated the reboot procedure after the sim card change.
Also, I have another adb command for the heads up notifications as stock ROM doesn't have a general heads up disable option as Lineage OS.
adb shell settings put global heads_up_notifications_enabled 0

Related

multi user support for phones

hey guys i got a way to enable multi user support on 4.2.x roms on phone. all you need is a working adb shell and the know how to use copy and past.
type or copy these commands hitting enter after each line
adb shell
su
pm get-max-users
setprop fw.max_users 8
pm create-user usernameyouwanthere
now go to settings and you should see users. and it will reboot a couple times dont worry

How to delete PayJoy? Samsung A720F (2017)

Hello. Could you please tell me how to remove PayJoy app from the phone?
Help me remove payjoy app
I think you only can DISABLE it - might be Android must got rooted before.
Using ADB commands
Code:
adb devices
adb shell "pm list packages -e | grep 'payjoy'" [color=red] <- this gets the package name used in next line[/color]
adb shell "pm disable-user --user 0 [color=blue]com.payjoy.status[/color]" [color=red]<- here you enter the [color=blue]true package name[/color] retrieved in previous line[/color]
adb shell "recovery --wipe-data"

Debloat/Disable System Apps

So you got your new shiny realme device but you hate bloatware or want to disable system apps so you can use 3rd party apps instead?
Follow the steps below:
THIS DOES NOT REQUIRE ROOT HOWEVER MAKE SURE NOT TO DISABLE IMPORTANT SYSTEM APPS. WIPE DATA/FORMATTING RE-ENABLES ALL SYSTEM APPS. THIS DOES NOT MESS WITH OTAs.
WHAT YOU NEED:-
ADB/Fastboot Drivers
Windows: https://dl.google.com/android/repository/platform-tools-latest-windows.zip
Linux: https://dl.google.com/android/repository/platform-tools-latest-linux.zip
DEBLOAT:-
1. Enable developer options by tapping on the build number 7 times and enable USB Debugging.
2. Plug in your phone.
3. Goto the folder where ADB is installed, hold shift and right click, and click on open command window here(windows).
4. Type
in CMD
Code:
adb devices
in Powershell
Code:
./adb devices
.
5. This should return the ID of your device and show if its authorised. Enable debugging Promt on your Phone if it shows unauthorised (allow this computer).
6. Type
in cmd
Code:
adb shell
in Powershell
Code:
./adb shell
.
7. This should display a prompt, something like RMXxxxx:/ $
8. To uninstall type
Code:
pm uninstall -k --user 0 <name of the package>
To disable type
Code:
pm disable-user --user 0 <name of the package>
eg: pm uninstall -k --user 0 com.heytap.browser / pm disable-user --user 0 com.heytap.browser
9. Done!
To reinstall uninstalled apps type
Code:
pm install-existing <name of the package>
To enable disabled apps type
Code:
pm enable <name of the package>
Some apps do not uninstall such as market and gamecenter, disabling is the only option.
here is a way you can delete system without pc without root

Debloat/Disable System Apps

So you got your new shiny realme device but you hate bloatware or want to disable system apps so you can use 3rd party apps instead?
Follow the steps below:
THIS DOES NOT REQUIRE ROOT HOWEVER MAKE SURE NOT TO DISABLE IMPORTANT SYSTEM APPS. WIPE DATA/FORMATTING RE-ENABLES ALL SYSTEM APPS. THIS DOES NOT MESS WITH OTAs.
WHAT YOU NEED:-
ADB/Fastboot Drivers
Windows: https://dl.google.com/android/repository/platform-tools-latest-windows.zip
Linux: https://dl.google.com/android/repository/platform-tools-latest-linux.zip
DEBLOAT:-
1. Enable developer options by tapping on the build number 7 times and enable USB Debugging.
2. Plug in your phone.
3. Goto the folder where ADB is installed, hold shift and right click, and click on open command window here(windows).
4. Type
in CMD
Code:
adb devices
in Powershell
Code:
./adb devices
.
5. This should return the ID of your device and show if its authorised. Enable debugging Promt on your Phone if it shows unauthorised (allow this computer).
6. Type
in cmd
Code:
adb shell
in Powershell
Code:
./adb shell
.
7. This should display a prompt, something like RMXxxxx:/ $
8. To uninstall type
Code:
pm uninstall -k --user 0 <name of the package>
To disable type
Code:
pm disable-user --user 0 <name of the package>
eg: pm uninstall -k --user 0 com.heytap.browser / pm disable-user --user 0 com.heytap.browser
9. Done!
To reinstall uninstalled apps type
Code:
pm install-existing <name of the package>
To enable disabled apps type
Code:
pm enable <name of the package>
Some apps do not uninstall such as market and gamecenter, disabling is the only option.
thanks. It was much needed.
Won't it be better if you have created list of removable apps? Other than sharing guide which everyone knows

How To Guide [GUIDE][MIUI] How to fix notification delay on MIUI

It work only on MIUI rom.
Method through ADB.
1) Install ADB, there are tons of packages out there
2) connect USB on phone and give permission to your computer access the phone
3) Type
Code:
adb shell pm disable-user --user 0 com.miui.notification

Categories

Resources