Skip to content Skip to sidebar Skip to footer

How To Debug Or Resolve "error: The Current Project Can Not Be Run" For Run Configuration For Android Instrumented Tests?

I have a project (created via this StackOverflow question) that has a module with an Android Instrumented Test. It can be run via a normal Configuration where the module is selecte

Solution 1:

Try running the Instrumented tests from the command line in Android Studio. The command is ./gradlew connectedAndroidTest . This should give you an indication of what's going on.

Also, make sure that you have an emulator running or a device plugged in.

Post a Comment for "How To Debug Or Resolve "error: The Current Project Can Not Be Run" For Run Configuration For Android Instrumented Tests?"