当我使用Android Studio Giraffe时,尝试在我的项目上使用布局检查器时,收到上述错误消息|2022.3.1金丝雀6号。
我也用Android Studio 电鳗试过|2022.1.1修补程序1.在那里我只得到错误消息:合成检查不可用。
对于版本控制,我使用chris巴内斯的BOM
composeOptions {
kotlinCompilerExtensionVersion '1.4.0'
}
dependencies{
androidx.compose = 2023.02.00-alpha02
..
implementation platform("dev.chrisbanes.compose:compose-bom:${androidx.compose}")
androidTestImplementation platform("dev.chrisbanes.compose:compose-bom:${androidx.compose}")
implementation "androidx.compose.ui:ui"
implementation "androidx.compose.ui:ui-util"
implementation "androidx.compose.material:material"
implementation "androidx.compose.material:material-icons-extended"
implementation "androidx.compose.ui:ui-tooling"
debugImplementation "androidx.compose.ui:ui-tooling"
implementation "androidx.compose.ui:ui-tooling-preview"
我也尝试过不使用BOM而使用自己的版本,但这给了我同样的问题。无效缓存和重建项目也不起作用。
有谁知道我如何才能解决这个问题,并开始使用我的布局检查器了吗?
1条答案
按热度按时间qxgroojn1#
您可能需要尝试更新到最新版本,看看是否有帮助:
当前的
kotlinCompilerExtensionVersion
是1.4.2
。