在Ubuntu上面,新安装的stadio,第一次编译项目的时候,
一直开在下载 fastutil-7.2.0.jar

原因是需要FQ。那么改一下你的buil.gradle

buildscript {
    
    repositories {
        maven{ url = "http://maven.aliyun.com/nexus/content/groups/public/" }
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
        

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        maven{ url = "http://maven.aliyun.com/nexus/content/groups/public/" }
        google()
        jcenter()
    }
}

相关文章:

  • 2022-12-23
  • 2021-06-21
  • 2022-12-23
  • 2021-06-22
  • 2021-06-20
  • 2022-01-10
  • 2021-12-23
  • 2021-05-13
猜你喜欢
  • 2022-12-23
  • 2021-07-07
  • 2022-12-23
  • 2021-08-13
  • 2021-10-13
  • 2021-06-30
  • 2021-07-21
相关资源
相似解决方案