我想在Android Studio中使我的测试模块依赖于应用程序模块,但是无法实现这一点,有错误
Error:Dependency AndroidApp:app:unspecified on project TestsRobotium resolves to an APK archive which is not supported as a compilation dependency. File: D:\android\MEWE\AndroidApp\app\build\apk\MeWe.apk
在我的test.gradle中,我在依赖标记中添加了提供的项目(':app')(由Android工作室自动完成)
我该如何解决这个问题?我需要依赖src,我的主应用程序的res文件夹,需要知道R文件
答案 0 :(得分:1)
现在可以使用com.android.test
插件。适用于Java和资源的工作。
可以找到Google的一个示例here。
基本上,您创建了一个单独的模块用于测试并定义应测试哪个模块和风味。我刚刚检查了它,它在使用IDE时遇到了一些问题,但是使用gradle命令行运行正常。