How to debug when running Robolectric tests in Android Studio?

Eugene picture Eugene · Jan 17, 2014 · Viewed 10.6k times · Source

I need to run debug while my tests execution in Android Studio + Robolectric. Each time I try to run them by selecting debug for the test task from Gradle tasks I get the error message:

Error running package_name:app_name [test]: Unable to open debugger port : java.net.SocketException "Socket closed"

Any ideas?

Answer

Eugene picture Eugene · Jan 17, 2014

I found the reason of the error. To make it run you need to uncheck the "Use in-process build" option in Compiler -> Gradle settings of Android Studio.

enter image description here