Reputation: 3389
So I have been submitting app to Google Play and wanting it released for TVs as well. I had to add multiple things into the apk like banner, Leanback launcher etc. The app works perfectly on Android TV but I keep getting this Android TV eligibility issue email all the time:
App links to or depends on web browser Your app contains links to web content, however, Android TV does not support any web browsing content. Please refer to our documentation for details.
And as you can see from documentation:
TV-WB For web content, the app uses WebView components and does not attempt to launch a web browser app.
Now while it is true that my app does open web browser links when clicking on certain buttons, this functionality checks for browser presence and if no browser is installed, it will not do anything.
What is the correct way to address this issue? I want to keep Web browser links for phones and tablets, just remove it for TVs. Should I use simple if condition?
Thanks for help!
Upvotes: 0
Views: 469
Reputation: 13836
You've got 2 options:
Option 1 gives you more flexibility in future to do things like branch the functionality of your TV and main apps. It also allows each APK to be smaller as the main app doesn't have any of the TV specific code, and vice-versa. However, it is a bit more work to co-ordinate the release.
Upvotes: 1