Supported Android devices: 0 devices

前端 未结 2 514
無奈伤痛
無奈伤痛 2021-01-27 14:44

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 i

相关标签:
2条回答
  • 2021-01-27 15:01

    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.

    0 讨论(0)
  • 2021-01-27 15:11

    Set the targetSdkVersion to 23.

    0 讨论(0)
提交回复
热议问题