问题:
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资源,可以将地址修改成阿里云的国内镜像,
方式一和方式二,任选一种即可.文章来源:https://www.toymoban.com/news/detail-518845.html
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/'}
}
}
文章来源地址https://www.toymoban.com/news/detail-518845.html
到了这里,关于Android Could not resolve all files for configuration ‘:app:debugRuntimeClasspath‘的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!