1 、问题
java
Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'.
> Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'.
> Could not find :umeng-asms-v1.2.1:.
Required by:
project :app
> Could not find :umeng-apm-v1.2.0:.
Required by:
project :app
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
只要提示这种Could not find :可能arr包没有引入正确,可能少了dirs
我的是gradle 8.0,在setting gradle文件添加代码
flatDir { dirs 'app/libs' }
java
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
flatDir {
dirs 'app/libs'
}
}
}