Android espresso-contrib gradle build failing

后端 未结 3 549
既然无缘
既然无缘 2020-12-05 16:02

I\'m trying to learn android espresso.. I followed some basic tutorials and it was working fine. But now I want to do some tests on the android navigation drawer. For that

3条回答
  •  我在风中等你
    2020-12-05 17:00

    do below

    androidTestCompile ('com.android.support.test.espresso:espresso-contrib:2.2.1'){
        exclude module: 'support-annotations'
        exclude module: 'support-v4'
        exclude module: 'recyclerview-v7'
    }
    

提交回复
热议问题