Google Play Shows - Your Device Isn't Compatible With This Version Am Not Able To Downloaded The Application
we have uploaded a greeting appplication in play store. it working fine in mobiles. but in tablets i am getting the error as 'this device is not compatible with this version'. here
Solution 1:
i have resloved this issues. i forget to declare telephony permission require is false,
<uses-feature
android:name="android.hardware.telephony"
android:required="false" /> permission in my mainfest file, now am able to downloaded the app from google playstore.
thanks
Solution 2:
Beside the fact that you have to make it available for different screen densities and resolutions, you must make some screenshots for the tablet version, optimize layout for larger screens, use icons/assets designed for tablet screens, make sure you declare hardware dependencies (not all tablets have calling functionality or front camera). A full and detailed list is available in the official Android documentation http://developer.android.com/distribute/googleplay/quality/tablet.html
Edit: for the beginning, upload a few screenshots made on a tablet, usually this is the 3rd option in the developer console which developers must complete
Post a Comment for "Google Play Shows - Your Device Isn't Compatible With This Version Am Not Able To Downloaded The Application"