Uninstall the App using Android ADB:
Find the package name of the application on your phone that you want to uninstall. The easiest way is to use Package Name Viewer.
Connect your phone to your PC having USB debugging mode enabled.
Right click on an empty area in the Fastboot folder while holding the shift key, and click on “Open Command Window Here”.
Now in command window type the following command: “adb uninstall packagename” //without inverted commas. And hit the Enter key. adb uninstall com.android.chrome
If you want to keep the app’s data and cache directory, then use this command: “adb uninstall -K packagename.apk”. E.g. adb uninstall -K com.android.chrome
As soon as you hit the Enter key, it will uninstall the App and show you Success in the command window.