Can't import project to android studio

后端 未结 4 1681
抹茶落季
抹茶落季 2021-01-13 01:05

I\'m trying to use this library

I\'ve added

compile \'net.rdrei.android.dirchooser:library:2.0@aar\'

to dependecies.

My top

4条回答
  •  走了就别回头了
    2021-01-13 01:11

    After trying the answer by Gabriele and a bit more digging, this worked for me

    repositories {
        mavenCentral()
        maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
        maven { url 'http://guardian.github.com/maven/repo-releases' }
    }
    
    dependencies {
        compile 'net.rdrei.android.dirchooser:library:2.2-SNAPSHOT@aar'
    }
    

提交回复
热议问题