scana
01/04/2024, 12:46 PMfreeCompilerArgs += [
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:liveLiterals=false",
]
results in e: Multiple values are not allowed for plugin option androidx.compose.compiler.plugins.kotlin:liveLiterals
While:
freeCompilerArgs += [
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:liveLiteralsEnabled=false"
]
does not seem to work at all - LiveLiterals classes are still being generated.scana
01/04/2024, 12:50 PMscana
01/04/2024, 12:59 PMandroid {
composeOptions {
useLiveLiterals false
}
}
scana
01/04/2024, 2:02 PMBen Trengrove [G]
01/04/2024, 11:47 PM