Skip to content Skip to sidebar Skip to footer

Supported Android Devices: 0 Devices

we are the developers of TourisMap. We don't understand why after the upload of our apk on the Google Play Developer Console we have 0 devices supported. Our personal thought is th

Solution 1:

Set the targetSdkVersion to 23.

Solution 2:

We found the problem. Thanks to the indications here, we found the line that generates 0 devices into build.gradle :

dependencies {

  [...]

  compile'org.apache.directory.studio:org.apache.commons.io:2.4'
}

We use that lib to acquire strings in UTF-8. We delete our dependencies from org.apache.commons.io, than we delete the line:

compile'org.apache.directory.studio:org.apache.commons.io:2.4'

from the build.gradle, we compile and upload on Google Play... Tadaaaa! 8233 devices. Why this happens? We don't know: Android Studio adds this line when you use Apache.Commons.IO functions and Google Play does not recognizes this lib... boh! Thanks for the help guys.

Post a Comment for "Supported Android Devices: 0 Devices"