> So you didn't uninstall them, you disabled them.
No, I installed them.
Samsung had marked them as being non-uninstallable via the Android Settings UI, so I used `adb -d shell pm uninstall --user 0 <packagename>` to forcibly uninstall them, although (as I said) the code is still in the rom.
Simply disabling them could be done using the UI, or with `adb -d shell pm disable <packagename>`, but they'd still be cluttering the apps list - which is not what I wanted.
uninstalling should not work at all on at least some of those apps, as they will exist on the read-only system partition (that only gets touched when the phone updates).
The APK for the apps you 'uninstalled' via the 'pm uninstall' command still exist in the system/product/system_ext/etc partitions, that's why they still take up space.
No. I uninstalled them with adb's uninstall command. If I'd wanted to disable them then i would have used adb's disable command.
"Uninstall" and "disable" have specific meanings wrt Android. If you have issues with the terminology then you should probably take it up with the Android team.
So you didn't uninstall them, you disabled them.