0

在为官方文档中的单元测试创​​建类后,我导入了com.google.common.truth.Truth.assertThatorg.junit.Test库,但 android studio 无法获取它并显示错误“无法解析符号“真相” ”和“无法解析符号“测试””。

在搜索了解决此问题的方法后,我在 StackOverflow 上遇到了一个类似问题的问题。我做了那里推荐的所有事情,但我仍然无法导入这些类。

我的项目 build.gradle

buildscript {
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:7.0.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

我的项目模块 build.gradle

dependencies {
    testImplementation 'junit:junit:4.13.2'
    testImplementation 'com.google.truth:truth:1.1.3'
}

我的测试班

import com.google.common.truth.Truth.assertThat;
import org.junit.Test;
4

1 回答 1

0

Android gradle 插件需要 java 11 才能运行。

请将 gradle java 插件更改为 11,如下图所示。

在此处输入图像描述

于 2022-02-08T07:54:20.330 回答