Android Could not resolve all files for configuration ‘:app:debugRuntimeClasspath‘

问题:

Could not resolve all files for configuration ‘:app:debugRuntimeClasspath’.

Could not find com.just.agentweb:agentweb-androidx:4.1.4.
Searched in the following locations:
在这里插入图片描述

解决方案:

打开settings.gradle文件,加入代码 maven { url ‘https://maven.google.com’ } 如下所示:

pluginManagement {
    
    
    repositories {
    
    
        gradlePluginPortal()
        google()
        mavenCentral()
        maven {
    
     url "https://maven.google.com" }
    }
}
dependencyResolutionManagement {
    
    
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
    
    
        google()
        mavenCentral()
        maven {
    
     url "https://maven.google.com" }
    }
}

在这里插入图片描述

重新编译看问题是否解决,如果没有再接着往下看.
点击File->Settings进入设置界面,勾选“Enable embedded Maven repository”(最新版本的编译器可忽略此设置)
如果构建项目时拉取不到gradle资源,可以将地址修改成阿里云的国内镜像,
方式一和方式二,任选一种即可.

pluginManagement {
    
    
    repositories {
    
    
        gradlePluginPortal()
        google()
        mavenCentral()
        //方式一
        maven{
    
     url 'https://maven.aliyun.com/repository/google'}
        maven{
    
     url 'https://maven.aliyun.com/repository/jcenter'}
        //方式二
        maven{
    
     url 'http://maven.aliyun.com/nexus/content/groups/public/'}
    }
}
dependencyResolutionManagement {
    
    
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
    
    
        google()
        mavenCentral()
        //方式一
        maven{
    
     url 'https://maven.aliyun.com/repository/google'}
        maven{
    
     url 'https://maven.aliyun.com/repository/jcenter'}
        //方式二
        maven{
    
     url 'http://maven.aliyun.com/nexus/content/groups/public/'}
    }
}

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_36158551/article/details/128421718