Skip to content

Commit

Permalink
Enable incremental processing by default
Browse files Browse the repository at this point in the history
  • Loading branch information
ting-yuan authored and neetopia committed Jan 20, 2021
1 parent d75cf72 commit 9b110ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class KspGradleSubplugin @Inject internal constructor(private val registry: Tool
options += SubpluginOption("kotlinOutputDir", kotlinOutputDir.path)
options += SubpluginOption("resourceOutputDir", resourceOutputDir.path)
options += SubpluginOption("cachesDir", cachesDir.path)
options += SubpluginOption("incremental", project.findProperty("ksp.incremental")?.toString() ?: "false")
options += SubpluginOption("incremental", project.findProperty("ksp.incremental")?.toString() ?: "true")
options += SubpluginOption("incrementalLog", project.findProperty("ksp.incremental.log")?.toString() ?: "false")
options += SubpluginOption("projectBaseDir", project.project.projectDir.canonicalPath)
options += SubpluginOption("kspOutputDir", kspOutputDir.path)
Expand Down

0 comments on commit 9b110ff

Please sign in to comment.