Hi, anyone faces issues while adding espresso depe...
# test
k
Hi, anyone faces issues while adding espresso dependencies as
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.6.1'
while testing navigation fragments
In my case, Nullpointer exception is occurring if we add
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.6.1'
in build.gradle.However if i changed to
Implementation 'androidx.test.espresso:espresso-contrib:3.6.1'
, everything is working as expected
Finally found the problem!!