Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to make Android TV app work on Amazon Fire TV?

Since the Android TV leanback library is apparently compatible with SDK level 17, which is what the Amazon Fire TV uses, I set the minimum SDK level on my Android TV app and installed it using ADB on my Fire TV. It actually works without any problems. However, it doesn't appear in the apps list in Settings, so I can only launch it through ADB. And when I tried to do a Live App Test in the Amazon Developer console, it won't even install.

Are there some settings or something I can change to make it work correctly? It would be a pity to not be able to use the leanback library since it does actually work, and since Amazon hasn't really provided anything equivalent to it.

like image 447
atariguy Avatar asked Jan 16 '15 13:01

atariguy


2 Answers

It is definitely possible. However, there are a few things that you need to take into account.

First of all, the Fire TV does not honor the LEANBACK_LAUNCHER intent filter, so you need to use the standard LAUNCHER one. Moreover, you won't be able to see your application in the home screen before the app is actually published in the Amazon Store.

Other than this, you should not find many differences from, say, developing for the Nexus Player.

like image 86
Sebastiano Avatar answered Oct 07 '22 00:10

Sebastiano


Here's a topic from the Fire TV documentation that might be helpful: How Fire TV Development Differs from Android TV Development.

like image 45
Tom Johnson Avatar answered Oct 06 '22 23:10

Tom Johnson