Skip to content Skip to sidebar Skip to footer

Commons-io-2.4.jar Is Showing As Native Platform With 0 Supported Device

I Have developed an APP using apache commons-io-2.4.jar for network data operations now I want to deploy my APK in Play store. I have deployed my app version 1.0 with commons-io-2.

Solution 1:

Following up on this I had the same issue.

All Android devices were incompatible with my app. The message was 'Doesn't support required ABI - commons-io-2.4.jar'

I had to exclude the commons.io from apache in the build.gradle.

configurations.all {
    resolutionStrategy {
        exclude module: 'org.apache.commons.io'
    }
}

Then include my own downloaded commons-io 2.6 from mvnrepo

implementation files('libs/commons-io-2.6.jar')

Make sure to add the jar file in libs directory and right click to 'Add as Library'. Hope this helps someone.

Post a Comment for "Commons-io-2.4.jar Is Showing As Native Platform With 0 Supported Device"