android / nowinandroid

A fully functional Android app built entirely with Kotlin and Jetpack Compose
Apache License 2.0
15.92k stars 2.81k forks source link

Change `set` to `=` operator in Kotlin DSL #1522

Closed Jaehwa-Noh closed 2 days ago

Jaehwa-Noh commented 4 days ago

What I have done and why

From this documentation https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment, kotlin DSL preferred assign lazily using = operator.

Using the = operator is the preferred way to call set() in the Kotlin DSL.