Amazon Firestick devices come with limited storage, and over time, unwanted apps can take up valuable space. While you can uninstall some apps directly from the Firestick interface, others may not provide the option to uninstall. In such cases, ADB (Android Debug Bridge) allows you to remove applications directly from your Firestick. This guide will walk you through both methods: uninstalling apps via Firestick settings and using ADB for forced removals.
Method 1: Uninstalling Apps Directly from Firestick
- Turn on your Firestick and go to the Home Screen.
- Navigate to Settings > Applications.
- Select Manage Installed Applications.
- Scroll through the list and select the app you want to uninstall.
- Click on Uninstall, then confirm by selecting Uninstall again.
If the Uninstall option is not available, you will need to use ADB to remove the application manually.
Method 2: Uninstalling Apps Using ADB
Step 1: Enable ADB Debugging on Firestick
- Go to Settings on your Firestick.
- Select My Fire TV > Developer Options.
- Enable ADB Debugging.
- Also enable Apps from Unknown Sources if necessary.
Step 2: Find Your Firestick’s IP Address
- Go to Settings > My Fire TV > About > Network.
- Note down the IP Address of your Firestick.
Step 3: Install ADB on Your Computer
For Windows:
cd C:\Users\YourUsername\Downloads\platform-tools-latest-windows\platform-tools
For Mac/Linux:
brew install android-platform-tools
Step 4: Connect to Firestick via ADB
adb connect 123.148.1.100
adb devices
Step 5: List Installed Applications
adb shell pm list packages
Step 6: Uninstall the App
adb shell pm uninstall -k --user 0 com.netflix.ninja
Step 7: Reboot Firestick (Optional)
adb reboot
Step 8: Disconnect ADB
adb disconnect
Checking Available Storage
adb shell df -h
Conclusion
Using ADB to uninstall apps on Firestick is a powerful method, especially when apps cannot be removed through normal settings. With this guide, you now have full control over your Firestick’s storage, allowing you to keep it running smoothly and efficiently.