Any plans for Amazon Firestick implementation? #1071
|
As I understand, Firestick is based on Android and it maybe possible to develop/port flutter apps there but i do not sufficient information for its viability. |
Replies: 1 comment 1 reply
|
For a Fire OS-based Fire TV Stick, this is already viable without a separate Flutter port. Fladder's current Android package is also its TV package: the manifest makes touch optional, declares Leanback support, supplies a TV banner, and registers So the practical installation path is to sideload one of the Android APKs from the Fladder releases. Check the device ABI first: adb shell getprop ro.product.cpu.abilistUse the adb install -r Fladder-Android-<version>-<abi>.apkThat is Amazon's documented Fire TV testing/install flow (ADB setup, APK installation). Fladder already publishes both ARM variants in each release (build workflow). If a Fire OS device launches the phone/tablet layout, try the current nightly. Stable v0.10.3 detected TV mode only through Android's Leanback feature; the July 29 nightly added a There is one important exception: Amazon now has both Fire OS and Vega OS sticks. Amazon's current device table lists the Fire TV Stick HD (2026) as Vega OS 1.1 with no Android API level (device table). Fladder currently produces Android APK/AAB artifacts, not a Vega |
For a Fire OS-based Fire TV Stick, this is already viable without a separate Flutter port. Fladder's current Android package is also its TV package: the manifest makes touch optional, declares Leanback support, supplies a TV banner, and registers
LEANBACK_LAUNCHER(source). The UI also handles remote focus/select keys (source) and TV mode selects the native Android player (source).So the practical installation path is to sideload one of the Android APKs from the Fladder releases. Check the device ABI first:
Use the
arm64-v8aAPK if that ABI is listed; otherwise usearmeabi-v7a, then install it with: