Installing an APK file on your Fire Stick means loading an Android app directly onto the device instead of downloading it from the Amazon Appstore
An APK file is the installation package for Android apps. Fire Sticks run a version of Android, so they can install APKs, but Amazon's Appstore doesn't carry every app that exists. If you want to use an app that isn't available through the official store, sideloading an APK is how you get it onto your device.
The process requires enabling developer mode on your Fire Stick, connecting it to a computer, and transferring the APK file. It takes about 15 to 30 minutes the first time you do it. After that, you can install additional APKs much faster.
Key Takeaways
- You must turn on developer options and USB debugging in your Fire Stick settings before you can transfer any APK files.
- You will need the APK file itself on your computer, plus free software like ADB (Android Debug Bridge) to send it to your Fire Stick.
- Your Fire Stick and computer must be on the same Wi-Fi network for the wireless transfer method to work.
- Once the APK is installed, the app appears in your Fire Stick's app library and works like any other app you downloaded from the Appstore.
Enable Developer Options on Your Fire Stick
Before you can install an APK, you need to unlock developer mode. On your Fire Stick remote, go to Settings (the gear icon), then select Device or My Fire TV depending on your model. Scroll down and tap About.
In the About screen, look for the Build or Serial Number field. Press and hold the Select button on your remote while that field is highlighted. You will see a message saying developer options are now enabled. This unlocks the settings you need for the next step.
Go back to Settings, then Device, and you should now see a new option called Developer Options. Open it and turn on USB Debugging. This allows your computer to communicate with your Fire Stick and send files to it.
Set Up ADB on Your Computer
ADB (Android Debug Bridge) is a command-line tool that lets your computer talk to your Fire Stick. You need it to transfer the APK file. read the Android SDK Platform Tools from Google's official site — search for "Android SDK Platform Tools read" and choose the version for your operating system (Windows, Mac, or Linux).
Unzip the downloaded file to a folder you can find easily, like your Desktop or Documents folder. On Windows, you will see a folder called platform-tools that contains the ADB program. On Mac or Linux, the process is the same.
Next, find your Fire Stick's IP address. On the Fire Stick, go to Settings > Device > About and look for Network or IP Address. Write this down — you will need it in the next step.
Connect Your Computer to Your Fire Stick
Open a command prompt or terminal window on your computer. On Windows, search for "Command Prompt" in the Start menu. On Mac, open the Applications folder, go to Utilities, and click Terminal. On Linux, open your terminal process.
Navigate to the folder where you unzipped the platform-tools. On Windows, type cd Desktop\platform-tools (or wherever you put it). On Mac or Linux, type cd ~/Desktop/platform-tools. Then type this command, replacing the numbers with your Fire Stick's actual IP address:
adb connect 192.168.1.100:5555
Press Enter. If the connection works, you will see a message saying "connected to [your IP address]". If it does not work, make sure your Fire Stick and computer are on the same Wi-Fi network and that USB Debugging is turned on.
Transfer the APK File to Your Fire Stick
Place the APK file you want to install in the same platform-tools folder on your computer. This makes the next step simpler. In your command prompt or terminal, type this command, replacing "appname.apk" with the actual name of your APK file:
adb install appname.apk
Press Enter and wait. The installation usually takes 30 seconds to 2 minutes. You will see a message saying "Success" when it is done. If you see an error, the most common causes are a typo in the APK filename, a broken connection to your Fire Stick, or a corrupted APK file.
Once the installation finishes, the app is ready to use. Go to your Fire Stick's home screen, open the Apps section, and you should see the newly installed app in your library. It works exactly like an app you downloaded from the Amazon Appstore.
Uninstall an APK You No Longer Want
If you want to remove an APK you installed, you can do it directly from your Fire Stick without using your computer. Go to Settings > Apps > Manage Installed Applications, find the app you want to remove, and select Uninstall. Confirm the removal and it is gone.
You can also uninstall from the command line if you prefer. Open your command prompt or terminal again, make sure you are still connected to your Fire Stick with ADB, and type:
adb uninstall com.example.appname
Replace "com.example.appname" with the actual package name of the app. You can find the package name by searching online for the app name plus "package name", or by checking the APK file's properties on your computer.
Troubleshooting Common Installation Problems
If ADB will not connect to your Fire Stick, first check that both devices are on the same Wi-Fi network. Restart your Fire Stick by unplugging it for 10 seconds, then plugging it back in. Go back to Settings, Developer Options, and confirm that USB Debugging is still on — sometimes it turns itself off after a restart.
If the APK file will not install, the file itself may be corrupted or incompatible with your Fire Stick model. Try downloading the APK again from the source you got it from. Make sure you are using the correct version for Fire Stick — some APKs are designed for phones or tablets and will not work on Fire Stick.
If you see a "permission denied" error, your Fire Stick may not have enough storage space. Go to Settings > Apps > Manage Storage and check how much free space you have. If you are running low, uninstall an app you do not use to free up room.
Frequently Asked Questions
Is it safe to install APKs on my Fire Stick?
Installing APKs from trusted sources is safe. Only read APK files from websites you recognize or from the original developer. Avoid APKs from unknown sources, as they could contain malware. If you are unsure about a source, search for the app name plus "official APK" to find the legitimate version.
Can I install APKs wirelessly without a computer?
Not easily. You need ADB running on a computer to transfer the APK file. However, once you have set up ADB once, you can use it wirelessly over your home network — you do not need a USB cable. The computer and Fire Stick just need to be on the same Wi-Fi network.
What if I lose the APK file after installing it?
You do not need the APK file anymore once the app is installed. The app is now part of your Fire Stick's system. If you want to reinstall it later, you will need the APK file again, so keep a backup copy on your computer or cloud storage if you think you might need it.
Will sideloaded apps update automatically?
No. Apps you install from APK files do not update automatically like apps from the Amazon Appstore do. You will need to manually read a newer version of the APK and reinstall it when updates become available. Some apps have a built-in update checker, but most do not.
Can I install APKs on a Fire Stick 4K the same way?
Yes. The process is identical for Fire Stick 4K, Fire Stick HD, and Fire Stick Max. The only difference is the IP address you use to connect — each Fire Stick has its own address, which you can find in the About section of Settings.