Disable System Apps Without Root
To disable a system app using ADB: adb shell pm disable-user --user 0 com.example.application
To re-enable a system app using ADB: adb shell pm enable com.example.application
(replace com.example.application with the target application's package name)