diesieben07
10/16/2020, 9:46 AM@OptIn
I get the warning "This class can only be used with the compiler argument '-Xopt-in=kotlin.RequiresOptIn'his class can only be used with the compiler argument '-Xopt-in=kotlin.RequiresOptIn'".
I added the following in my `build.gradle.kts`:
kotlin {
targets.all {
compilations.all {
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
}
}
}
But the warning remains.tim
10/22/2020, 10:43 AMAlexey Belkov [JB]
11/06/2020, 10:28 AMtim
11/06/2020, 3:56 PMdiesieben07
11/09/2020, 10:23 PM