|
|
|
|
|
by karmickoala
2723 days ago
|
|
I didn't know that. Thank you! For those of you wondering how to do it (I'm using Windows 10, but it's not that different): 1. Download Android platform tools for your platform: https://developer.android.com/studio/releases/platform-tools... 2. Unzip it, open cmd and head to the unpacked folder. 3. Enable developer tools and USB debugging in your Android. 4. List packages avaiable: adb shell pm list packages
5. Delete the unwanted package adb shell pm uninstall --user 0 com.package.name
|
|