问题记录--gradle: No incremental compile snapshot data available for...

surroundings

gradle: gradle-4.10-bin.zip

idea: idea-2020.1

Error

solution

Incremental compilation is prohibited. In the project gradle configuration, add the following:

tasks.withType(JavaCompile) {
    options.incremental = false
}

Has been compiled and passed.

github issue:https://github.com/gradle/gradle/issues/6612

Guess you like

Origin blog.csdn.net/x763795151/article/details/108489585