Remove the Iode Browser

I dont want a Browser on my phone since i only use it for messaging and phoning. How can i remove it?
Best Regards

Settings/apps/preinstalled apps/iode Browser

Or in general:

disable
adb shell pm disable-user --user 0 PACKAGE

enable
adb shell pm enable PACKAGE

uninstall
adb shell pm uninstall --user 0 PACKAGE

install
adb shell pm install-existing PACKAGE

List all installed APPS
adb shell ‘pm list packages -f’ | sed -e ‘s/.*=//’ | sort

3 Likes