Muhammad Muqorrobin
Muhammad Muqorrobin

Reputation: 109

apk is not compatible with this device .. and supported device 0

you can check this URl and image

enter image description here

enter link description here

android.permission.ACCESS_COARSE_LOCATION
android.permission.ACCESS_FINE_LOCATION
android.permission.ACCESS_NETWORK_STATE
android.permission.ACCESS_WIFI_STATE
android.permission.INTERNET
android.permission.READ_EXTERNAL_STORAGE
android.permission.WRITE_EXTERNAL_STORAGE
com.google.android.providers.gsf.permission.READ_GSERVICES

i only use 8 permission .. how can i resolve it ?

Upvotes: 2

Views: 838

Answers (1)

Lucien Mendela
Lucien Mendela

Reputation: 134

1.Try adding the android support screen option in manifest

<supports-screens android:resizeable=["true"| "false"]
                  android:smallScreens=["true" | "false"]
                  android:normalScreens=["true" | "false"]
                  android:largeScreens=["true" | "false"]
                  android:xlargeScreens=["true" | "false"]
                  android:anyDensity=["true" | "false"]
                  android:requiresSmallestWidthDp="integer"
                  android:compatibleWidthLimitDp="integer"
                  android:largestWidthLimitDp="integer"/>
  1. Also try adding uses feature and uses permission tag, sometimes google play makes your app incompatible due to that. and also if you app requires those future set the requirement to true.

Upvotes: 1

Related Questions