My android application is showing Incompatible for Android 4.4.4 Moto E In Play Store

后端 未结 2 1298
误落风尘
误落风尘 2021-01-16 07:45

My android application is showing Incompatible for Android 4.4.4 Moto E in Google play store,

I tried many ways, How do i resolve this issue. Can you please help me

相关标签:
2条回答
  • 2021-01-16 08:34

    This problem raised to me, I just added layouts for various screen sizes and it works and supported my phone. Hope it help. Have a nice day.

    0 讨论(0)
  • 2021-01-16 08:45

    if your Using Google-Maps , then for supporting Moto E you have remove

    this ,

     <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true"/>
    

    from your Manifest file..

    Moto E not supporting OpenGL ES version 2 i think .. i had the same problem i removed above code then it started supporting..

    or simple change android:required="false"

    Incompatible Problems

    This type of problems can occur based on the App Permissions, you might be using Some Permissions which that device is Not Supporting or Not Available on that Device.

    Suppose if your App is supporting for Tablets, then your app should not use PHONE Permissions in your App, if you use PHONE Permissions for tablets then your app will be Incompatible for such kind of Tablets which don't have PHONE Feature..

    Hope this info Helps you in future..

    0 讨论(0)
提交回复
热议问题