Итак, проблема, которая возникает в вашем build.gradle(app)
, имеет решение.Вы просто удаляете все testImplementation и androidTestImplementation из ваших зависимостей .Я думаю, что вы не найдете никаких проблем с этого момента.Обычно в приложении build.gradle должны быть только реализации библиотек.Давай, сделай это, скажи мне, что ты получишь после этого.
dependencies{
implementation
// comment or remove all the testCompilations and androidTestCompilations and sync the gradle
//add this at the end of the line, this is for compilation of the gradle
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}
Надеюсь, это поможет.