Very simple question - how to add commons-io dependency to gradle Android project?
I tried the following
buildscript { repositories {
Use gradlePlease to get the dependency.
Add the following to your app/build.gradle file:
dependencies { compile 'org.apache.commons:commons-io:1.3.2' }
//UPDATED
implementation group: 'commons-io', name: 'commons-io', version: '2.6'