Android - 0 devices supported

前端 未结 4 1159
梦毁少年i
梦毁少年i 2021-01-14 15:57

I am having troubles updating my existing app. The apk upload works just fine, but Google Play says that there are 0 devices suported. I\'ve been looking some other posts an

4条回答
  •  情歌与酒
    2021-01-14 16:08

    did you add new dependencies in your App Gradle ? Sometimes this error came from a dependency not correctly added.

    For example I added this library :

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

    but in fact i should add it like this :

    compile 'commons-io:commons-io:2.4'

    Also you can try to update all your com.android.support dependencies to 25.+ version and set your targetSdkVersion to 25 too.

提交回复
热议问题