Home > Mobile >  Gradle buildToolsVersion and actual buildToolsVersion different?
Gradle buildToolsVersion and actual buildToolsVersion different?

Time:10-01


What is this

CodePudding user response:

You can look at other right of the module

CodePudding user response:

When I specify 28.0.2 (compileSDKVersion=28) :
[WARNING: The specified The Build The Android SDK Tools version (28.0.2) is ignored, as it is below The minimum supported version (28.0.3) for Android Gradle Plugin 3.4.1 track.
The Android SDK Build Tools 28.0.3 will be 2.
To suppress this warning, remove "buildToolsVersion '28.0.2'" from your build. Gradle file, as each version of the Android gradle Plugin now has a default version of the build tools.]
New version does not need buildToolVersion properties, can use with compileSDKVersion corresponding stable version.

CodePudding user response:

Is not prompt, Android Gradle Plugin minimum with version 3.4.1 track (28.0.3)
  • Related