错误:包android.support.annotation不存在

nzkunb0c  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(398)

我将运行程序,但出现如下所示的错误


[![在此处输入图像描述][3]][3]
我尝试:实现androidx.annotation:annotation:1.0.2'
实现“com.android。support:support-annotations:28.0.0"
但不工作请给我一个解决方案,谢谢?
[3]: https://i.stack.imgur.com/6nqa5.jpg在此处输入图像描述

rn0zuynd

rn0zuynd1#

android支持库可以从google的maven存储库获得。根据文档,要将这些库中的一个添加到构建中,请在顶级build.gradle文件中包含google的maven存储库:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        // add related repo
    }
    dependencies {
        // add classpath files here
    }
}

allprojects {
    repositories {
        // add it here ...
        google()
    }
}

相关问题