Android app on Google Play Store available on ZERO (0) devices

Your app gets uploaded thru the Release Manager on Google Play Store successfully. It even displays that its available on the app store on Google Play website but when you try to download from a device its not available. On further checking you will see that on the console it will say available on 0 devices.
Another scenario is when the app is already available on the play store but with a new app update its giving you WARNING - Device support removed. Deactivation of this APK will result in your app being available for new installs on fewer types of devices.

The issue here is device dependency org.apache.directory.studio:org.apache.commons.io:2.4

To resolve this make changes to the app build.gradle dependencies and replace this with commons-io:commons-io:2.4

dependencies {
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:design:27.0.2'
    
    //implementation 'org.apache.directory.studio:org.apache.commons.io:2.4'
    implementation 'commons-io:commons-io:2.4'

    implementation 'com.google.code.gson:gson:2.2.4'
    implementation files('libs/universal-image-loader-1.9.1-with-sources.jar')
    implementation 'com.android.support:cardview-v7:27.0.+'
    implementation 'com.android.support:recyclerview-v7:27.0.+'
}

No comments:

Post a Comment

NO JUNK, Please try to keep this clean and related to the topic at hand.
Comments are for users to ask questions, collaborate or improve on existing.