How to find what Flutter packages requre SDK version #33?

88 views Asked by At

When trying to deploy my Flutter app, I'm getting an error that says that the deployment requires SDK version #33.

How can I find what packages in the app require SDK #33?

R

unning Gradle task 'assembleDebug'...
Warning: The plugin url_launcher_android requires Android SDK version 33.
For more information about build configuration, see https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
One or more plugins require a higher Android SDK version.
Fix this issue by adding the following to D:\Ian\Documents\github\good_day\android\app\build.gradle:
android {
  compileSdkVersion 33
  ...
}
1

There are 1 answers

4
mzsdev On

android>app>build.gradle

compileSdkVersion 33
targetSdkVersion 33