How to attach sources from android.support.test.*
for debugging in AS?
Tried downloading sources from https://android.googlesource.com/platform/frameworks/testing but the version doesn't seem to match my testing library version.
Testing sources (for instance AndroidJunitRunner
) don't seem to be available via sdk manager, am I missing something ?
I encountered a similar problem and it took a quite amount of time to figure it out. It seems like a bug due to a missing Gradle task not executed because the SAME configuration used to work but not any more after upgrading to AS v1.2+.
First, the following dependency is obsolete.
And it is updated as follows in the documentation.
The defaultConfig should include the following line as usual.
Also, make sure the Android Support Repository is installed through the SDK Manager.
If android.support.test.* cannot be resolved, then manually execute the Gradle task as follows.
If succeeded, the issue may be solved. At least, it works for me.
UPDATE:
It seems like there are still chances this could happen on AS 2.1.2. To be noted, if you have more than one Android modules, running the gradle task
generateDebugAndroidTestSources
from one particular should be enough for all, especially the Android library module one.You can use Espresso for UI-tests and Robolectric + JUnit + Mockito for unit-tests.
Use AndroidJunitRunner, add it to build.gradle like:
Use some package android.support.test.* you need add dependencies like
I suffered this problem recently and I solve it now. After I add the following dependencies and
Sync Project with Gradle file
, I can not find any relative library in theExternal Library
folder.What I do is to replace all
androidTestCompile
tocompile
andSync Project with Gradle file
. and I can see the relative libraries.Last, I replace
compile
back toandroidTestCompile
andSync Project with Gradle file
again. The relative libraries are still there.I want to post images to make it more clearly, but I am new in here and can not post images. Hope this will help you.