Skip to content

Instantly share code, notes, and snippets.

@bripkens
Last active August 29, 2015 14:09
Show Gist options
  • Save bripkens/de77dcfc35f5a0958c95 to your computer and use it in GitHub Desktop.
Save bripkens/de77dcfc35f5a0958c95 to your computer and use it in GitHub Desktop.
Install XBMC on Kindle Fire TV
#!/bin/bash
set -eo pipefail
FIRE_TV_IP="192.168.0.105"
XBMX_APK="http://mirrors.xbmc.org/releases/android/arm/xbmc-13.2-Gotham-armeabi-v7a.apk"
export PATH="$PATH:/Applications/Android\ Studio.app/sdk/platform-tools:/Applications/Android\ Studio.app/sdk/tools"
adb kill-server
adb start-server
adb connect "$FIRE_TV_IP"
wget "$XBMX_APK"
adb install xbmc-*.apk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment