Skip to content

Instantly share code, notes, and snippets.

@FrenchBen
Created July 15, 2021 01:02
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save FrenchBen/1476e45815504b6dcc33c10ebd1d47dc to your computer and use it in GitHub Desktop.
Save FrenchBen/1476e45815504b6dcc33c10ebd1d47dc 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