问题描述
Error: Google Play requires that apps target API level 29 or higher.错误
Error: Google Play requires that apps target API level 33 or higher.
解决办法
-
Google Play 上架时 ,要求应用的 " target API level " 必须大于等于 ,大部分情况不用上架谷歌商店直接关闭 lint 检查即可 。
-
在app的build.gradle 的android块里设置
添加如下代码:
lintOptions {
checkReleaseBuilds false
abortOnError false
}