Application is incompatible with tablets

北战南征 提交于 2019-12-02 03:05:58

I am just going to post everything I said as an answer. The order I put these in does not correlate with importance.

You should not need to use the <compatible-screens> unless your app should only run on certain screens.

In my manifest, I have added the following, though this may not be required for you:

<uses-feature android:name="android.hardware.screen.portrait" android:required="false" />
<uses-feature android:name="android.hardware.screen.landscape" android:required="false" />

I would look in the Google Dev Console and make sure you are not excluding devices and maybe look to see if any Tablets are in the supported devices list. I have 80 if I search 'Tablet'.

Finally, make sure you are at least checking the following architectures: armeabi-v7a and x86. armeabi is deprecated and you could do the other two but we do not since we use LLVM compiling in release mode, which is not compatible with the 64 bit architectures. The good thing about that is that all of the 64 bit architectures can still use 32 bit builds so they all still get covered if you check those 3.

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