Featured image of post Android小知识 - The specified Android SDK Build Tools version (28.0.3) is ignored

Android小知识 - The specified Android SDK Build Tools version (28.0.3) is ignored

问题:

Android代码打包编译遇到一个错误提示(Android Studio)

“The specified Android SDK Build Tools version (28.0.3) is ignored, as it is below the minimum supported version (29.0.2) for Android Gradle Plugin 4.0.1.”

解决办法:

这个问题其实很好处理

修改app/build.gradlebuildToolsVersion配置,将

1
2

buildToolsVersion 28.0.3

改为

1
2

buildToolsVersion 29.0.2
Licensed under CC BY-NC-SA 4.0
最后更新于 Jul 30, 2025 11:44 +0800