Skip to content

Instantly share code, notes, and snippets.

@harshit-budhraja
Forked from FrenchBen/adb-firetv-cmd.sh
Created December 19, 2022 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harshit-budhraja/23b93bbc254db0cfbc14e388c3ce713e to your computer and use it in GitHub Desktop.
Save harshit-budhraja/23b93bbc254db0cfbc14e388c3ce713e to your computer and use it in GitHub Desktop.
List of commands available for ADB against FireTV smart TV
# Connect to TV
adb connect <TV_IP>
# verify devices
adb devices
# list installed packages
adb shell pm list packages -f -3
# list all packages
adb shell pm list packages -f
# disable package
adb shell pm disable-user --user 0 <PACKAGE_NAME>
## disable alexa shopping
adb shell pm disable-user --user 0 com.amazon.tv.alexadestination
## disable game circle
adb shell pm disable-user --user 0 com.amazon.ags.app
## disable amazon FreeTime
adb shell pm disable-user --user 0 com.amazon.tv.tahoe
## disable amazon music
adb shell pm disable-user --user 0 com.amazon.bueller.music
## disable amazon photos
adb shell pm disable-user --user 0 com.amazon.bueller.photos
## disable amazon app store
adb shell pm disable-user --user 0 com.amazon.venezia
## enable app store
adb shell pm enable --user 0 com.amazon.venezia
# list global settings
adb shell settings list global
## turn off UI animations
adb shell settings put global animator_duration_scale 0.0
adb shell settings put global transition_animation_scale 0.0
adb shell settings put global window_animation_scale 0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment