Debloat your smartphone with adb

Use adb to delete bloatware from your device. Use the following command:

$ adb shell pm uninstall --user 0 APP_ID

Get a list of all apps with:

$ adb shell pm list packages

Only third-party apps:

$ adb shell pm list packages -3

Recover an uninstalled app:

$ adb shell pm install-existing APP_ID