Fire TV
Fire TV faq and some tips.
警告
以下步驟僅在 Fire TV Stick 4K Max - 1st Gen (2021) & Fire OS 7 版本測試及使用。且不保證所有硬體皆相容該設定,請自行評估相關操作的硬體損壞風險。
Home screen replacement
更換掉預設的首頁,改用別的 Launcher
Requirement
- 操作 ADB 環境
- 開啟 Fire TV ADB, Home -> Settings (Gear icon) -> My Fire TV -> Developer options -> ADB debugging (Set to On)
- 在 Amazon appstore 搜尋並安裝 Downloader (by AFTVnews.com) 應用程式
Step
-
開啟 Downloader App 輸入
632067
下載 Launcher Manager (Mini) apk 並安裝 -
透過 ADB 連線到 Fire TV
-
依序輸入下列指令
adb shell pm grant com.wolf.minilm android.permission.SYSTEM_ALERT_WINDOW
adb shell pm grant com.wolf.minilm android.permission.READ_LOGS
adb shell dumpsys deviceidle whitelist +com.wolf.minilm
- 開啟 Launcher Manager (Mini) 選擇你想使用的 Launcher
Reference
- https://developer.android.com/tools/adb?hl=zh-tw
- https://www.amazon.com/dp/B01N0BP507/?tag=aftvn-20
- https://www.aftvnews.com/how-to-enable-adb-debugging-on-an-amazon-fire-tv-or-fire-tv-stick/
- https://www.aftvnews.com/fire-tv-home-screen-replacement-is-possible-again-with-new-launcher-manager-mini-release/
- https://xdaforums.com/t/root-mantis-firestick-4k-custom-launcher-support-and-system-patches.4461275/page-6#post-89444853
Sleep or Screensaver times
自訂進入螢幕保護及休眠的時間,因為進入螢幕保護的時間預設只提供 5, 10, 15 分鐘的選項;沒有任何選項可以修改進入休眠的時間
Requirement
- 操作 ADB 環境
Step
-
透過 ADB 連線到 Fire TV
-
輸入下列指令設定進入睡眠的時間,並確認設定是否生效(
$times
替換為欲設定的時間,單位為毫秒,預設值為1200000
)
adb shell settings put secure sleep_timeout $times
adb shell settings get secure sleep_timeout
- 輸入下列指令設定進入螢幕保護的時間,並確認設定是否生效(
$times
替換為欲設定的時間,單位為毫秒,預設值為300000
)
adb shell settings put secure screen_off_timeout $times
adb shell settings get secure screen_off_timeout