Android studio 3.0 got Error SHA-256 digest error for org/jacoco/agent/rt/RT.class
After I update Android studio to 3.0 and migrated my project by following this instruction I got the error like this: * What went wrong: Execution failed for task ':app:transformClassesWithFirebasePerformancePluginForDevDebug'. > SHA-256 digest error for org/jacoco/agent/rt/RT.class I tracked and found that the root cause came from this code in build.gradle file. debug { ... // Run code coverage reports by default on debug builds. testCoverageEnabled = true } Because when I commented this line of code the project built fine. I haven't got this problem when I used Android Studio 2.3. I had