Fixes false positive "This is an internal Mavericks API. It is not intended for external use."

of MvRx `by viewModel()` calls. Maybe due to the inlining of code... This is a temporary fix...
This commit is contained in:
Benoit Marty 2021-10-11 14:13:42 +02:00 committed by Benoit Marty
parent 6dd0de6123
commit 6721669d1d
1 changed files with 6 additions and 0 deletions

View File

@ -298,6 +298,12 @@ android {
kotlinOptions {
jvmTarget = "11"
freeCompilerArgs += [
"-Xopt-in=kotlin.RequiresOptIn",
// Fixes false positive "This is an internal Mavericks API. It is not intended for external use."
// of MvRx `by viewModel()` calls. Maybe due to the inlining of code... This is a temporary fix...
"-Xopt-in=com.airbnb.mvrx.InternalMavericksApi",
]
}
sourceSets {