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

这篇博客介绍了在遇到Gradle无法解析依赖的问题时,如何通过编辑settings.gradle文件添加Google和阿里云的仓库URL来解决。同时,提供了启用内置Maven仓库的设置选项,并给出了在拉取资源失败时,使用阿里云镜像作为替代的两种方法,以加快资源下载速度。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

问题:

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/'}
    }
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值