Add commons-io dependency to gradle project in Android Studio

后端 未结 4 1393
滥情空心
滥情空心 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 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'
    

提交回复
热议问题