HOW-TO:Install Kodi on Fire TV: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
== adbFire (Win/Mac/Linux) ==
== adbFire (Win/Mac/Linux) ==
adbFire is a companion program for FireTV and Android XBMC & forks. It allows you to sideload XBMC (and other apps) without the bother of downloading the Android SDK and other tools. Additionally, it allows you to copy files to and from XBMC, backup XBMC, root the FireTV, mount USB drives and more.
adbFire is a companion program for FireTV and Android Kodi & forks. It allows you to sideload Kodi (and other apps) without the bother of downloading the Android SDK and other tools. Additionally, it allows you to copy files to and from Kodi, backup Kodi, root the FireTV, mount USB drives and more.


Download website link: http://jocala.com/adbfire.html  
Download website link: http://jocala.com/adbfire.html  
Line 15: Line 15:
# Setup the ADB Utility via OS-specific instructions below, or install the Android SDK for your platform: https://developer.android.com/sdk/index.html
# Setup the ADB Utility via OS-specific instructions below, or install the Android SDK for your platform: https://developer.android.com/sdk/index.html
# Follow these instructions to connect ADB to your Amazon Fire TV:  https://developer.amazon.com/sdk/asb/connect-adb.html
# Follow these instructions to connect ADB to your Amazon Fire TV:  https://developer.amazon.com/sdk/asb/connect-adb.html
# Follow these instructions to install the XBMC app onto the Fire TV (using the ADB tool):  https://developer.amazon.com/sdk/asb/app-install.html
# Follow these instructions to install the Kodi app onto the Fire TV (using the ADB tool):  https://developer.amazon.com/sdk/asb/app-install.html


=== Setup ADB on Your Host ===
=== Setup ADB on Your Host ===
Line 47: Line 47:
# From the Fire TV Home screen, select '''Settings'''
# From the Fire TV Home screen, select '''Settings'''
# Select '''Applications'''
# Select '''Applications'''
# Find and select your Kodi installation (it may be named "XBMC" or "SPMC")
# Find and select your Kodi installation (it may be named "Kodi" or "SPMC")
# Select '''Launch Application'''
# Select '''Launch Application'''
'''Note:''' Users have reported that you can [http://forum.xbmc.org/showthread.php?tid=191109&pid=1677974#pid1677974 autostart Kodi] after boot using an Android automation apps such as Tasker, AutomateIt, or Llama. Alternately, you can use [http://diegomejia.globat.com/android/AutoPilot.apk Autopilot] to autoboot to Kodi.
'''Note:''' Users have reported that you can [http://forum.kodi.tv/showthread.php?tid=191109&pid=1677974#pid1677974 autostart Kodi] after boot using an Android automation apps such as Tasker, AutomateIt, or Llama. Alternately, you can use [http://diegomejia.globat.com/android/AutoPilot.apk Autopilot] to autoboot to Kodi.


'''Launching Kodi from Fire TV Homescreen:''' You can also have Llama (and probably others) [http://forum.xbmc.org/showthread.php?tid=191109&pid=1721346#pid1721346 launch Kodi] when a native Fire TV app like '''Flixter''' is launched from the Fire TV homescreen.  Some apps [http://forum.xbmc.org/showthread.php?tid=191109&pid=1721962#pid1721962 work better] than others.
'''Launching Kodi from Fire TV Homescreen:''' You can also have Llama (and probably others) [http://forum.kodi.tv/showthread.php?tid=191109&pid=1721346#pid1721346 launch Kodi] when a native Fire TV app like '''Flixter''' is launched from the Fire TV homescreen.  Some apps [http://forum.kodi.tv/showthread.php?tid=191109&pid=1721962#pid1721962 work better] than others.


=== Upgrading Kodi ===
=== Upgrading Kodi ===
Line 65: Line 65:
If you wish to downgrade your version of Kodi (because you installed a test version that didn't work properly, for example) and keep your settings, the following commands will allow you to do so.
If you wish to downgrade your version of Kodi (because you installed a test version that didn't work properly, for example) and keep your settings, the following commands will allow you to do so.


:<code>adb uninstall -k org.xbmc.xbmc
:<code>adb uninstall -k org.xbmc.kodi
:adb install <apk-file-name></code>
:adb install <apk-file-name></code>


If you are downgrading using an Android device, you will need to use the "shell" command.
If you are downgrading using an Android device, you will need to use the "shell" command.


<code>adb shell pm uninstall -k org.xbmc.xbmc</code>
<code>adb shell pm uninstall -k org.xbmc.kodi</code>

Revision as of 22:59, 18 January 2015

adbFire (Win/Mac/Linux)

adbFire is a companion program for FireTV and Android Kodi & forks. It allows you to sideload Kodi (and other apps) without the bother of downloading the Android SDK and other tools. Additionally, it allows you to copy files to and from Kodi, backup Kodi, root the FireTV, mount USB drives and more.

Download website link: http://jocala.com/adbfire.html

Amazon FireTV Utility App (Windows)

A Windows based GUI app to easily sideload your apks to the Amazon FTV. Most of the wiki has been automated into this app so anyone that doesn’t want to mess around with Shell commands will find this helpful.

Download website link: http://goo.gl/woVu0s Backup website link: http://goo.gl/lUNWaT

ADB command line

General Steps

  1. Setup the ADB Utility via OS-specific instructions below, or install the Android SDK for your platform: https://developer.android.com/sdk/index.html
  2. Follow these instructions to connect ADB to your Amazon Fire TV: https://developer.amazon.com/sdk/asb/connect-adb.html
  3. Follow these instructions to install the Kodi app onto the Fire TV (using the ADB tool): https://developer.amazon.com/sdk/asb/app-install.html

Setup ADB on Your Host

Note: Your host must be connected to the same network as your Fire TV.

Template:ADB setup

Enable USB Debugging on the Fire TV

  1. From the Fire TV Home screen, select Settings
  2. Go to System -> Developer Options
  3. Enable both the ADB Debugging and the Apps from Unknown Sources options.
  4. Go to System -> About -> Network, and take note of the Fire TV's IP address

Install Kodi to the Fire TV

Note: If your APK file name contains spaces, make sure you put quotes around it in the adb commands. On OS X and Linux, you may need to prepend ./ to the adb commands.

  1. On your host (PC or other Android device), download your desired Kodi APK
  2. Open a Command Prompt (Windows), Terminal (OS X/Linux), or Terminal Emulator app (Android)
  3. Navigate (CD) to the directory with your Kodi APK (In Terminal Emulator on Android you only need to run the adb commands)
  4. Run the following commands
    >adb kill-server
    >adb start-server
    >adb connect <ip-address-of-fire-tv>
  5. ADB is connected when it reports the message "connected to <ip-address-of-fire-tv>:<port>"
  6. Run the following command
    >adb install <apk-file-name>
  7. Installation is complete when it reports the message "success"

(Note: For Android you need to type in the full path. e.g. >adb install /sdcard/Download/apk-file-name.apk)

Launch Kodi on the Fire TV

  1. From the Fire TV Home screen, select Settings
  2. Select Applications
  3. Find and select your Kodi installation (it may be named "Kodi" or "SPMC")
  4. Select Launch Application

Note: Users have reported that you can autostart Kodi after boot using an Android automation apps such as Tasker, AutomateIt, or Llama. Alternately, you can use Autopilot to autoboot to Kodi.

Launching Kodi from Fire TV Homescreen: You can also have Llama (and probably others) launch Kodi when a native Fire TV app like Flixter is launched from the Fire TV homescreen. Some apps work better than others.

Upgrading Kodi

Kodi can be upgraded through ADB without losing your settings. To do this, you must use a newer version of the package already installed on the machine.

  1. Download the package to your machine
  2. Make sure ADB is connected to the Fire TV
  3. Run adb install -r <apk-file-name>
  4. Installation is complete when it reports the message "Success"

Kodi will still go through the "first run" screen the first time it is launched but your settings will remain intact.

Downgrading Kodi

If you wish to downgrade your version of Kodi (because you installed a test version that didn't work properly, for example) and keep your settings, the following commands will allow you to do so.

adb uninstall -k org.xbmc.kodi
adb install <apk-file-name>

If you are downgrading using an Android device, you will need to use the "shell" command.

adb shell pm uninstall -k org.xbmc.kodi