FireVisionIPTV is a free IPTV application for Amazon Fire TV devices. It allows users to watch live TV channels from around the world with automatic updates and server-synced channel lists.
- Access to hundreds of live TV channels from various countries
- Easy-to-use interface optimized for Fire TV
- Server-synced channel lists
- Automatic app updates
- Offline fallback support
- No paid subscription required
- Dynamic channel loading from server
- Automatic update notifications
- One-click update installation
- Graceful offline fallback to local M3U
- Fire TV optimized Leanback UI
- Channel browsing by category
- Search functionality
- HLS/DASH streaming support
- Architecture - App architecture and component details
- Deployment Guide - Complete build and deployment instructions
- Main Project README - Overall project documentation
- Android Studio: Arctic Fox or later
- JDK: Java 8 or higher
- Gradle: 7.0+ (included with Android Studio)
- Fire TV Device: Fire TV Stick 4K, Fire TV Cube, or newer
- Android Version: Android 9.0 (API 28) or higher
Method 1: Direct Download
- Download the latest APK from your server:
https://tv.cadnative.com/api/v1/app/download - On Fire TV: Settings > My Fire TV > Developer options > Enable "Apps from Unknown Sources"
- Use Downloader app to install the APK
- Launch FireVisionIPTV
Method 2: ADB Install
# Enable ADB on Fire TV first
adb connect FIRE_TV_IP:5555
adb install FireVisionIPTV.apk1. Clone the repository:
git clone https://github.com/akshaynikhare/FireVisionIPTV.git
cd FireVisionIPTV2. Open in Android Studio:
- Launch Android Studio
- Select "Open an Existing Project"
- Navigate to the FireVisionIPTV directory
- Wait for Gradle sync
3. Configure Server URL:
Edit ApiClient.java:
// Line 16
private static final String BASE_URL = "https://tv.cadnative.com";4. Build:
# Debug build
./gradlew assembleDebug
# Release build
./gradlew assembleReleaseAPK location:
- Debug:
app/build/outputs/apk/debug/app-debug.apk - Release:
app/build/outputs/apk/release/app-release.apk
FireVisionIPTV/
├── app/
│ ├── src/
│ │ ├── main/
│ │ │ ├── java/com/cadnative/firevisioniptv/
│ │ │ │ ├── api/
│ │ │ │ │ └── ApiClient.java # Server communication
│ │ │ │ ├── update/
│ │ │ │ │ └── UpdateManager.java # Auto-update logic
│ │ │ │ ├── models/
│ │ │ │ │ ├── Channel.java # Channel model
│ │ │ │ │ ├── Movie.java # Display model
│ │ │ │ │ └── PairingRequest.java # Pairing model
│ │ │ │ ├── MainActivity.java # Entry point
│ │ │ │ ├── MainFragment.java # Browse UI
│ │ │ │ ├── PlaybackActivity.java # Video player
│ │ │ │ └── MovieList.java # Channel manager
│ │ │ └── res/ # Resources
│ │ └── AndroidManifest.xml
│ └── build.gradle # Build configuration
└── build.gradle # Project configuration
Before each release, update build.gradle:
android {
defaultConfig {
versionCode 2 // Increment for each release
versionName "1.1" // Semantic version
}
}Important: versionCode must increase for auto-updates to work!
Update the server URL in ApiClient.java:
private static final String BASE_URL = "https://tv.cadnative.com";If using Firebase features:
- Download
google-services.jsonfrom Firebase Console - Place in
app/directory
1. Enable ADB on Fire TV:
- Settings > My Fire TV > Developer Options
- Enable "ADB Debugging"
- Enable "Apps from Unknown Sources"
2. Find Fire TV IP:
- Settings > My Fire TV > About > Network
3. Connect and Install:
adb connect FIRE_TV_IP:5555
adb devices
adb install app/build/outputs/apk/debug/app-debug.apk4. View Logs:
adb logcat | grep -i firevision- App launches successfully
- Channels load from server
- Fallback to local M3U works (airplane mode test)
- Channel playback works
- D-Pad navigation works
- Search functionality works
- Update check triggers on launch
- Update download and install works
- Launch the FireVisionIPTV app on your Fire TV device
- Browse available live TV channels by category
- Use search to find specific channels
- Select a channel to start playback
- App automatically checks for updates on launch
// app/build.gradle
versionCode 2 // Increment
versionName "1.1" // Update./gradlew clean
./gradlew assembleReleasecurl -X POST https://tv.cadnative.com/api/v1/admin/app/upload \
-H "X-API-Key: YOUR_API_KEY" \
-F "apk=@app/build/outputs/apk/release/app-release.apk" \
-F "versionName=1.1" \
-F "versionCode=2" \
-F "releaseNotes=Bug fixes and improvements"git tag -a v1.1 -m "Release version 1.1"
git push origin v1.1Users will be notified of the update on next app launch!
Gradle Sync Failed:
./gradlew clean
# In Android Studio: File > Invalidate Caches > Invalidate and RestartDependencies Error:
./gradlew --refresh-dependenciesINSTALL_FAILED_UPDATE_INCOMPATIBLE:
adb uninstall com.cadnative.firevisioniptv
adb install app-release.apkChannels Not Loading:
- Check server URL in ApiClient.java
- Verify server is running:
curl https://tv.cadnative.com/api/v1/channels - Check device internet connection
- View logs:
adb logcat | grep ApiClient
Update Not Working:
- Verify APK uploaded to server
- Check version codes (new > old)
- View logs:
adb logcat | grep UpdateManager
Video Playback Failed:
- Check stream URL validity
- Test stream in VLC player
- View logs:
adb logcat | grep ExoPlayer
The app communicates with the server via these endpoints:
| Endpoint | Purpose |
|---|---|
/api/v1/channels |
Fetch channel list |
/api/v1/app/version?currentVersion=X |
Check for updates |
/api/v1/app/download |
Download APK |
See Server API Documentation for details.
We welcome contributions! To contribute:
- Fork the repository
- Create a feature branch:
git checkout -b feature/your-feature - Make your changes
- Test thoroughly on Fire TV device
- Commit:
git commit -am 'Add new feature' - Push:
git push origin feature/your-feature - Submit a Pull Request
- Follow Android/Java conventions
- Use meaningful variable names
- Add comments for complex logic
- Test on actual Fire TV device
This project is licensed under the MIT License.
This application provides access to free IPTV streams, which may or may not be legal in your country. It is your responsibility to ensure that you comply with all applicable laws and regulations. The developers of FireVisionIPTV are not responsible for any legal issues that may arise from the use of this application.
- Documentation: See ARCHITECTURE.md and DEPLOYMENT_GUIDE.md
- Issues: Check logs with
adb logcat - Server Issues: See Server Documentation
- GitHub: Open an issue
- Original app by akshaynikhare
- Channel list from IPTV-Org
- Built with AndroidX Leanback
- Video playback via ExoPlayer
Version: 1.0.0 Target: Fire TV (Android 9.0+) Server: https://tv.cadnative.com




