我试图在Android Studio中构建一个应用程序,我遇到了一个错误,这是最近才开始出现的。据我所知,我没有更改任何设置或修改任何系统文件,这将导致错误发生。我已经尝试重新安装Android Studio,但错误仍然发生,所以我开始认为这是一个编码问题。错误如下:
Gradle task[clean, :app:generateDebugSources,:app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:prepareDebugUnitTestDependencies, :appcompileDebugSources, :app:complieDebugSources, :app: compileDebugAndroidTestSources, :app:compileDebugUnitTestSources]
C:\Users\Stuart\Documents\TourApp\App\src\androidTest\java\com\example\android\tourapp\ExampleInstrumentedTest.java
error: package android.support.test does not exist
error: package android.support.test.runner does not exist
error: package android org.junit does not exist
error: package android org.junit.runner does not exist
error: package android org.junit does not exist
error: cannot find symbol class RunWith
error: cannot find symbol class Test
error: cannot find symbol variable InstrumentationRegistry
Execution failed for task ':app:compileDebugAndroidTestJavaWithJavac'.
Compilation failed; see the compiler error output for details.
你知道是什么引起的吗?
2条答案
按热度按时间mwkjh3gx1#
尝试在
app/build.gradle
文件的依赖项部分下添加以下行此外,您可以使用**
androidTestCompile 'junit:junit:4.12'
**作为替代选项。ctzwtxfj2#
这发生在我Android预览hedgehod 2023有一些错误在xml,但你找不到,去代码->检查代码->整个项目,一些错误(!)将显示并修复后,尝试再次构建您的项目