各記述を以下のように個別に置き換えるのがとりあえずシンプルでいいのかな。
@FlowPreview
→ @OptIn(FlowPreview::class)
@ExperimentalCoroutinesApi
→ @OptIn(ExperimentalCoroutinesApi::class)
gradle で一括で無視しときますか?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
subprojects { | |
// ... | |
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach { | |
kotlinOptions { | |
allWarningsAsErrors = false | |
freeCompilerArgs += [ | |
"-Xopt-in=kotlin.RequiresOptIn", | |
"-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi", | |
"-Xopt-in=kotlinx.coroutines.FlowPreview", | |
"-Xopt-in=kotlinx.serialization.ExperimentalSerializationApi", | |
"-Xopt-in=kotlin.Experimental" | |
] | |
} | |
} | |
} |
いうて、まだまだ変更がありそうなところではある。
kotlinx.coroutines/Annotations.kt at master · Kotlin/kotlinx.coroutines
[BUG] [multiplatform] ExperimentalAPI annotation from Kotlin 1.6.0 and above - githubmemory
Opt-in requirements (aka Experimental API support) · Issue #95 · Kotlin/KEEP
Opt-in requirements | Kotlin
2022-05-14 : 追記
→ Deprecated に。
'-Xopt-in' is deprecated and will be removed in a future release, please use -opt-in instead