Android Tv Published App Not Visible In Sony Bravia Android Tv
I have developed an app using Leanback Library. The app is working fine on Sony Android TV. But when I have published the app successfully on play store then when i am searching ap
Solution 1:
I have removed following feature in my
AndroidManifest.xml
file:
<uses-featureandroid:name="android.hardware.faketouch"android:required="false" />
I have also removed following
permissions
:
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permissionandroid:name="android.permission.GET_TASKS" />//It was for Crittercism
As my app intended for Android TV
, Touchscreen emulator
and Microphone
hardware feature does not support Android TV
. That's why I have removed, and I was success to upload application to Play Store
with compatible Sony Android TV
.
For your reference, I have referred this link.
Post a Comment for "Android Tv Published App Not Visible In Sony Bravia Android Tv"