Reputation: 5391
I am trying to run the application with coverage however the run with coverage button is disabled .
How to enable this ?
Thanks .
Upvotes: 2
Views: 889
Reputation: 5391
Build.gradle -
apply plugin: 'jacoco'
Command Line -
createDebugAndroidTestCoverageReport
You can get the coverage report at -
{project}/build/reports/coverage/index.html
Upvotes: 1