androidx.compose:compose-bom を 2025.11.01 -> 2025.12.00 にアップデートしたところ、
lintでエラーが出るようになりました。
Error: Querying resource values using LocalContext.current [LocalContextGetResourceValueCall from androidx.compose.ui]
対処
LocalResourcesを代わりに使うことで解消できます。
- val context = LocalContext.current
+ val resources = LocalResources.current
LaunchedEffect(Unit) {
- val foo = context.getString(R.string.bar)
+ val foo = resources.getString(R.string.bar)
}