Android studio之编译提示Could not find :umeng-asms-v1.2.1

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'
        }
    }
}
相关推荐
_一条咸鱼_2 小时前
揭秘 Android TextInputLayout:从源码深度剖析其使用原理
android·java·面试
_一条咸鱼_2 小时前
揭秘!Android VideoView 使用原理大起底
android·java·面试
_一条咸鱼_2 小时前
深度揭秘!Android TextView 使用原理全解析
android·java·面试
_一条咸鱼_2 小时前
深度剖析:Android Canvas 使用原理全揭秘
android·java·面试
_一条咸鱼_2 小时前
深度剖析!Android TextureView 使用原理全揭秘
android·java·面试
_一条咸鱼_2 小时前
揭秘!Android CheckBox 使用原理全解析
android·java·面试
_一条咸鱼_2 小时前
深度揭秘:Android Toolbar 使用原理的源码级剖析
android·java·面试
fen_fen2 小时前
Python3:Jupyter Notebook 安装和配置
ide·python·jupyter