Home > OS >  Having issues on flutter
Having issues on flutter

Time:11-24

Warning: The plugin flutter_local_notifications requires Android SDK version 33.
For more information about build configuration, see https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
Warning: The plugin video_thumbnail requires Android SDK version 33.
For more information about build configuration, see https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
One or more plugins require a higher Android SDK version.
Fix this issue by adding the following to C:\Users\Dell\Documents\movina\android\app\build.gradle:
android {
  compileSdkVersion 33
  ...
}

tried executing the app and it prompts the error, have tried to download the android sdk 33 and still nothing. need help please

CodePudding user response:

You have to change compileSdkVersion in the build.gradle file of the application scope of android app(by default it's on 29 line)

path_to_your_project/android/app/build.gradle 

enter image description here

CodePudding user response:

debug console already show you the solution of your error you just need to read and understand your error and the solution will be in front of you

  • Related