Pro@programming.dev to Technology@lemmy.worldEnglish · 4 days agoHow to turn off Gemini on Android — and why you shouldproton.meexternal-linkmessage-square11fedilinkarrow-up1242arrow-down17
arrow-up1235arrow-down1external-linkHow to turn off Gemini on Android — and why you shouldproton.mePro@programming.dev to Technology@lemmy.worldEnglish · 4 days agomessage-square11fedilink
minus-squareFredselfish@lemmy.worldlinkfedilinkEnglisharrow-up6·4 days agoMy phone won’t let me uninstall it. And it shows it’s off yet every now and then it rears it’s ugly head.
minus-squaresquaresinger@lemmy.worldlinkfedilinkEnglisharrow-up23·4 days ago Install adb on your PC Enable developer options on your phone Enable USB Debugging inside the developer options Connect the phone to the PC using USB Open a console window of your choice Execute adb devices and allow USB debugging for this PC on your phone Execute adb shell pm disable-user --user 0 com.google.android.apps.gemini Done You can do that with any app you like, they can all be disabled that way. Beware though: if you disable critical system components (like e.g. your last launcher, keyboard or systemui) you might not have a great time using your phone afterwards.
minus-squareFredselfish@lemmy.worldlinkfedilinkEnglisharrow-up2·4 days agoThank you definitely few apps I want to remove off my phone.
My phone won’t let me uninstall it. And it shows it’s off yet every now and then it rears it’s ugly head.
adb devices
and allow USB debugging for this PC on your phoneadb shell pm disable-user --user 0 com.google.android.apps.gemini
You can do that with any app you like, they can all be disabled that way. Beware though: if you disable critical system components (like e.g. your last launcher, keyboard or systemui) you might not have a great time using your phone afterwards.
Thank you definitely few apps I want to remove off my phone.