"AAPT: error: resource not found" when I'm testing
"AAPT: error: resource not found" when I'm testing
我写了一个仪器测试。当我 运行 时,我得到一个错误:
/Users/ilamasin/StudioProjects/ecwid/general/build/intermediates/packaged_res/debug/drawable/horizontal_divider_with_padding.xml:6:
AAPT: error: resource dimen/horizontal_divider_thickness (aka
com.ecwid.android.reports.test:dimen/horizontal_divider_thickness) not
found.
这是我在项目中的可绘制对象,它存在。我的项目 运行s 和作品。但是测试没有。有人有这个错误吗?我使用 Junit 和 Mockito(对不起我的英语)
只需转到 dimen 文件并为其添加值-:
res->values->dimen and give value to dimen/horizontal_divider_thickness
或转到可绘制文件并传递值,即 15dp
或 20dp
任何您想添加的值。
我写了一个仪器测试。当我 运行 时,我得到一个错误:
/Users/ilamasin/StudioProjects/ecwid/general/build/intermediates/packaged_res/debug/drawable/horizontal_divider_with_padding.xml:6: AAPT: error: resource dimen/horizontal_divider_thickness (aka com.ecwid.android.reports.test:dimen/horizontal_divider_thickness) not found.
这是我在项目中的可绘制对象,它存在。我的项目 运行s 和作品。但是测试没有。有人有这个错误吗?我使用 Junit 和 Mockito(对不起我的英语)
只需转到 dimen 文件并为其添加值-:
res->values->dimen and give value to dimen/horizontal_divider_thickness
或转到可绘制文件并传递值,即 15dp
或 20dp
任何您想添加的值。