No Incremental Compile Snapshot Data Available Gradle Error
I am launching a Gradle task and it gives me an error like No incremental compile snapshot data available. I've searched online and I can't find a sufficient description for this.
Solution 1:
What gradle version are you using, found an old bug in v4.10: https://github.com/gradle/gradle/issues/6612
Solution 2:
By Deleting the .gradle folder of Android Project.
Then do gradle sync and build apk.
It will solve this problem
Solution 3:
My project is using gradle 4.10 version. However, gradlew.bat clean build --refresh-dependencies solved this problem for me.
Post a Comment for "No Incremental Compile Snapshot Data Available Gradle Error"