AndroidStudio 3.1.2突然显示导入未解析

时间:2018-05-02 10:07:12

标签: android-studio gradle

就在一夜之间,AndroidStudio 3.1.2无法解决某些导入问题。几乎只有远程下载的那些。在我的所有项目上。

我已多次清理项目。 我有无效的缓存并多次重启AndroidStudio。 我手动删除了〜/ .gradle / caches

中的所有缓存

AndroidStudio仍然无法解析这些库。

最奇怪的是,库似乎已下载,因为我可以在我的项目中成功构建和启动应用程序。从下面的屏幕截图中可以看出,构建成功并运行应用程序。

在我构建项目时,是不是会抱怨某些依赖项无法解决?

enter image description here

我的项目级build.gradle看起来像这样:

buildscript {
    ext.kotlin_version = '1.2.41'
    repositories {
        mavenLocal()
        mavenCentral()
        jcenter()
        google()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
        classpath 'com.google.gms:google-services:3.2.0'
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
    }
}

repositories {
    mavenLocal()
    mavenCentral()
}

allprojects {
    repositories {
        jcenter()
        google()
        mavenCentral()
    }
}

这是怎么回事?

1 个答案:

答案 0 :(得分:1)

最后我完全卸载了Android Studio并再次安装它以使其正常工作。