I want to add the flag `-Xcontext-receivers` in my...
# android
m
I want to add the flag
-Xcontext-receivers
in my android studio bumblebee Kotlin compilation flags but I can’t find where to set it. Anyone knows the place? thx
m
I've put the following in the project level build.gradle.kts file
Copy code
allprojects {
     kotlinOptions {
            freeCompilerArgs = freeCompilerArgs + "<flags>"
}
In fact the kotlinOptions block was inside a "tasks" block too.
🙏🏻 1
🤘🏻 1