android 集成compose 注意点

184 阅读1分钟

1 每一个使用compose 代码的模块 都需要如下设置 不使用的可以不设置

buildFeatures {
    compose true
}
composeOptions {
    kotlinCompilerExtensionVersion compose_version
    kotlinCompilerVersion kotlin_version
}