Add commons-io dependency to gradle project in Android Studio

后端 未结 4 1380
滥情空心
滥情空心 2020-12-03 02:21

Very simple question - how to add commons-io dependency to gradle Android project?

I tried the following

buildscript {
    repositories {
           


        
相关标签:
4条回答
  • 2020-12-03 02:46

    you need to declare a repository where you want to resolve the commons-io library from (e.g. MavenCentral):

    buildscript {
        repositories {
            mavenCentral()
        }
    
        dependencies {
            classpath 'com.android.tools.build:gradle:0.5.+'
        }
    }
    
    apply plugin: 'android'
    
    repositories{
        mavenCentral()
    }
    
    dependencies {
        compile files('libs/android-support-v4.jar')
    
        compile group: 'commons-io', name: 'commons-io', version: '2.0.1'
    }    
    
    0 讨论(0)
  • 2020-12-03 03:02

    Update 2020 using gradle

    // Home Page : https://commons.apache.org/
    
    // IO - https://commons.apache.org/proper/commons-io/
    implementation group: 'commons-io', name: 'commons-io', version: '2.7'
    
    // String / Text 
    implementation group: 'org.apache.commons', name: 'commons-text', version: '1.8'
    
    0 讨论(0)
  • 2020-12-03 03:03

    As of now (May 2014) if you use the default generated project it is actually amazingly simple (though difficult to find instructions!

    Open the second level build.gradle, and add the following line to the dependencies {:

    compile "commons-io:commons-io:+"
    

    That will get the latest version of commons-io. My complete file looks like this:

    apply plugin: 'android'
    
    android {
        compileSdkVersion 19
        buildToolsVersion "19.0.0"
    
        defaultConfig {
            minSdkVersion 18
            targetSdkVersion 19
            versionCode 1
            versionName "1.0"
        }
        buildTypes {
            release {
                runProguard false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
            }
        }
    }
    
    dependencies {
        compile "commons-io:commons-io:+"
    }
    
    0 讨论(0)
  • 2020-12-03 03:13

    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'
    
    0 讨论(0)
提交回复
热议问题