service - Why GPS based android app is not installing in Assisted-GPS (A-GPS) based android device? -


This indicates, the error indicates that "An appropriate device for installing apps"

The specification is as follows:

Model: Lenovo A369i

Android OS Ver: 4.2.2

I am downing the permission in the Android Manfish file

  & lt; Usage-permission Android: name = "android.permission.CLEAR_APP_CACHE" /> & Lt; Usage-permission Android: name = "com.ylogtrack.activity.permission.MAPS_RECEIVE" /> & Lt; Usage-permission Android: name = "android.permission.INTERNET" /> & Lt; Use-permission Android: name = "com.google.android.providers.gsf.permission.READ_GSERVICES" /> & Lt; Usage-permission Android: name = "android.permission.ACCESS_FINE_LOCATION" /> & Lt; Usage-permission Android: name = "android.permission.ACCESS_COARSE_LOCATION" /> & Lt; Usage-permission Android: name = "android.permission.ACCESS_NETWORK_STATE" /> & Lt; Usage-permission Android: name = "android.permission.READ_PHONE_STATE" /> & Lt; Usage-permission Android: name = "android.permission.ACCESS_WIFI_STATE" / & gt; & Lt; Usage-permission Android: name = "android.permission.WRITE_EXTERNAL_STORAGE" /> & Lt; Usage-permission Android: name = "android.permission.READ_EXTERNAL_STORAGE" /> & Lt; Usage-permission Android: name = "android.permission.ACCESS_MOCK_LOCATION" /> & Lt; Usage-permission Android: name = "android.permission.VIBRATE" /> & Lt; Usage-permission Android: name = "android.permission.RECEIVE_BOOT_COMPLETED" /> & Lt; Usage-permission Android: name = "android.permission.BLUETOOTH" />  

plz suggestion

told from the specs found in it :

  A-GPS support only  

This means that the device does not have a separate GPS component and it depends on the mobile network for the location.

Permission

  & lt; Usage-permission Android: name = "android.permission.ACCESS_FINE_LOCATION" />  

Actually it shows that a GPS is available and you can get location information without the network.

  ACCESS_FINE_LOCATION requires Android. hardware.location.gps and Android. See the hardware.place  

:

Since the store checks the permissions and the device does not have GPS, your app is not visible.

Try adding to your manifest:

  & lt; Use-enabled Android: name = "android.hardware.location.gps" Android: Required = "Wrong" />  

See if this problem solves.


Comments