报错信息:
这两个地方显示依赖版本过高,去toml文件找到对应的版本
1. Dependency 'androidx.activity:activity:1.10.1' requires libraries and applications that
depend on it to compile against version 35 or later of the
Android APIs.
2. Dependency 'androidx.activity:activity-compose:1.10.1' requires libraries and applications that
depend on it to compile against version 35 or later of the
Android APIs.
解决方案
将 coreKtx = "1.16.0" 改成 coreKtx = "1.13.1"
activityCompose = "1.10.1" 改成 activityCompose = "1.9.0"
下面是修改后的
同步一下,重新编译,通过了
评论 (0)