In this guide we will see step by step how to debloat the RN 11 Pro 5G
First of all we have to enable: Developer Options
Settings->About tablet->Software information->(tap 7 times)Build number
After that we will enable: OEM Unlocking & USB Debbuging
Settings->Developer Options->OEM Unlocking(ON) & USB Debbuging(ON)
On the next step we need to download & install : ADB & Fastboot tools
Once you install the tools, connect your {Phone} - {PC}
Select: USB Debbuging & Open your: Terminal
We are almost there

Now i will make a short explanation in order to understand what are we doing exactly & how we will do it.
What is ADB?
ADB provides us with commands that can be used to debug Android devices,
installing or uninstalling apps and getting information about a connected device.
adb shell
This command activates the remote shell command console on the connected Android smartphone or tablet.
adb shell pm uninstall -k --user 0
Using this, you can easily uninstall the unwanted system apps. To be able to execute it, you must issue 'adb shell' command first.
You can then use 'pm uninstall -k --user 0' followed by the Android app package name as shown below.
pm uninstall -k --user 0 name.of.the.app.apk
This command can help you if you want to remove all the bloatware from your phone.
Please note that most system apps don't have the 'Uninstall' option on the device but this command works magically.
Now all you need to do is find the app that you want to remove
Tap & Hold -> App info
Click -> Top left (info icon)
& Get the APK Name:
For example, we want to remove Mi Radio.
{Phone} - {PC} We check for any Usb Debug auth messages
We open the Terminal/CMD & we type:
adb devices (to check that we have a connection)
adb shell (to form a connection with the phone)
pm uninstall -k --user 0 com.miui.fm
the radio has been removed.
Thanks for your time ❤