Multiple apks, single listing of app for Google TV and Android Phone/Tablet on Play Store

廉价感情. 提交于 2019-12-06 08:57:12

These solutions were suggested by the Google TV DevRel team.

I had accidentally added an armeabi folder under libs. This made Google TV play store think that the app uses NDK and the app was filtered out.

Another change I had to make was to replace

<supports-screens
   android:largeScreens="true"
   android:normalScreens="false"
   android:smallScreens="false"
   android:xlargeScreens="false" /> 

with

<supports-screens android:largeScreens="true"/>

and create a newer version of the apk. Setting all the supports screens attributes was making large devices pick up the wrong apk.

Following this, I uploaded and activated 1203010003 and then deactivated the old versions 1203010001 and 1203010002.I was then able to successfully save the apk without encountering the "Error: New APK version is lower than previous APK version"

Hope this helps others!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!