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
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.
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"
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..