Skip to content

Commit

Permalink
Fix deprecated getter usage
Browse files Browse the repository at this point in the history
  • Loading branch information
ammargitham committed Apr 13, 2024
1 parent 044558b commit 47aeb36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ subprojects {
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions {
val pluginPrefix = "plugin:androidx.compose.compiler.plugins.kotlin"
val destination = "${project.buildDir.absolutePath}/compose_compiler"
val buildDirPath = layout.buildDirectory.asFile.get().absolutePath
val destination = "${buildDirPath}/compose_compiler"
if (project.findProperty("composeCompilerReports") == "true") {
freeCompilerArgs += listOf(
"-P",
Expand Down

0 comments on commit 47aeb36

Please sign in to comment.