Does the Play Store say that my phone does not support my own application?

I have these android permissions in my manifest.

android.permission.INTERNET android.permission.ACCESS_NETWORK_STATE android.permission.ACCESS_FINE_LOCATION android.permission.CAMERA, android.permission.WRITE_EXTERNAL_STORAGE android.permission.SEND_SMS, android.permission.SYSTEM_ALERT_WINDOW android.permission.READ_EXTERNAL_STORAGE 

I have a Sony Xperia Tipo mobile (Sony ST21i). The application page says that my phone is not supported by my application. My phone has all the features listed above, and my application works well on my phone.

The Google developer site says the following are required features, although I have not explicitly indicated any sign of use in my manifest.

 This application is only available to devices with these features, as defined in your application manifest. Screen layouts: SMALL NORMAL LARGE XLARGE Required device features android.hardware.camera android.hardware.camera.autofocus android.hardware.location android.hardware.location.gps android.hardware.telephony android.hardware.touchscreen 
+7
source share
2 answers

Using android.permission.CAMERA implies android.hardware.camera and android.hardware.camera.autofocus, as the Android documentation says (see the last table on this page: http://developer.android.com/guide/topics/ manifest / uses-feature-element.html ).

Since your device does not have autofocus, it cannot load your application. You must add:

 <uses-feature android:name="android.hardware.camera.autofocus" android:required="false" /> 
+5
source

Check if the AF function is REQUIRED. Most phones are filtered out on this one.

+1
source

All Articles