脱机模式没有可用的io.fabric.tools:gradle:1.25.4的缓存版本

时间:2020-08-20 18:55:44

标签: android firebase android-studio

我正面临这个问题。尝试了很多事情但没有成功。

“离线状态下没有io.fabric.tools:gradle:1.25.4的缓存版本”

我检查了:

  1. 通过NO代理,自动代理以及输入地址和端口进行Internet连接。
  2. 文件>使chache无效并重新启动
  3. 重建并重新启动android studio
  4. 检查插件结构,但找不到。

如何解决io.fabric错误?请发表评论。

io.fabric是否已过时?如果应用包含此解决方案是什么?

我的build.gradle:

buildscript {
    repositories {
        jcenter()
        google()
        maven { url 'https://maven.google.com/' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
//        classpath 'com.android.tools.build:gradle:3.3.0'

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

allprojects {
    repositories {
        jcenter()
        google()
        maven { url 'https://maven.google.com/' }
    }
}


task clean(type: Delete) {
    delete rootProject.buildDir
}

1 个答案:

答案 0 :(得分:0)

我想还有一个选项可以尝试检查是否启用了离线模式。下面的一个是离线的。如果离线,则将其更改为在线并再次同步 enter image description here