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
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.