Google Play Store APK
My app APK is uploaded to the Google Play Store. Surprised to see that the supported devices list shown as 0.
I think this got something to do with the manifest setting. It could well be one of the following features or permissions is having the issue with google play filter . I have specified clearly in the Manifest.xml that only SDK 18 or above is able to run the app .
Contacted Google support, still no answer after almost 120 hours past.
I have seen some suggestions that this may well be the ACCESS_COARSE_LOCATION
and ACCESS_FINE_LOCATION
setting related issue.
Appreciate any help on this. Thanks.
Features
ACCESS_COARSE_LOCATION
ACCESS_FINE_LOCATION
android.hardware.BLUETOOTH
android.hardware.BLUETOOTH_LE
android.hardware.LOCATION
android.hardware.location.GPS
android.hardware.location.NETWORK
android.hardware.screen.PORTRAIT
android.hardware.TOUCHSCREEN
Permission
android.permission.ACCESS_COARSE_LOCATION
android.permission.ACCESS_FINE_LOCATION
android.permission.ACCESS_NETWORK_STATE
android.permission.BLUETOOTH
android.permission.BLUETOOTH_ADMIN
android.permission.INTERNET
android.permission.READ_EXTERNAL_STORAGE
android.permission.WAKE_LOCK
android.permission.WRITE_EXTERNAL_STORAGE
android.permission.WRITE_SETTINGS
com.google.android.c2dm.permission.RECEIVE
mypackage.permission.C2D_MESSAGE
I think you should setup on the grade file: Such as
defaultConfig {
applicationId "com.."
minSdkVersion 18
targetSdkVersion 22
versionCode 9
versionName "1.8"
// Enabling multidex support.
multiDexEnabled true
}
It will help you.
链接地址: http://www.djcxy.com/p/68982.html下一篇: Google Play商店APK