Skip to content Skip to sidebar Skip to footer

My Android Application Is Showing Incompatible For Android 4.4.4 Moto E In Play Store

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 out. Thanks in

Solution 1:

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

this ,

<uses-featureandroid: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 PHONEPermissions 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..

Solution 2:

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.

Post a Comment for "My Android Application Is Showing Incompatible For Android 4.4.4 Moto E In Play Store"