I assume virtually everyone in this place is using some third party ROM. Many of you probably rocking Banana ROM off your Alcatel z657 bought at Boost Mobile in 2012.

But is there any simpleton here like myself who is on stock android? You know, the middle age dude who has “Privacy” as a hobby because he can’t afford or have time for a real one. 😶‍🌫️

    • I Cast Fist@programming.dev
      link
      fedilink
      arrow-up
      4
      ·
      13 hours ago

      https://developer.android.com/tools/adb

      When you enable USB debugging (gotta enable Developer Mode first, which is usually enabled by tapping several times on Settings -> About phone -> Build Number, but can vary depending on model), you can connect the phone to your computer and have the computer start a command line shell via ADB (Android Bridge), which will allow you to uninstall almost everything. First, you should get a list of installed stuff with adb pm list packages. With the list, you can then use adb pm uninstall -k --user 0 package.name - wildcards don’t work, you’ll have to go one by one.

      • ☂️-@lemmy.ml
        link
        fedilink
        arrow-up
        3
        ·
        edit-2
        8 hours ago

        wow THANK YOU! just uninstalled a bunch of garbage from one of my stock phones. i thought you needed root for this, this is awesome!

        • I Cast Fist@programming.dev
          link
          fedilink
          arrow-up
          3
          ·
          8 hours ago

          Yup, when I first learned that you didn’t need to root, that developer options + adb was enough to get rid of most bloatware, that was an incredible relief to me, too!