项目编译警告
ComposeOptions.kotlinCompilerVersion is deprecated. Compose now uses the kotlin compiler defined in your buildscript.
去官网查了一下,原来是 kotlinCompilerVersion 此属性已弃用。
解决办法
kotlinCompilerVersion直接删掉,这样配置就好了。
composeOptions {
kotlinCompilerExtensionVersion compose_version
}