Home > Net >  One or more plugins require a higher Android SDK version error occurs when i run the project
One or more plugins require a higher Android SDK version error occurs when i run the project

Time:05-27

One or more plugins require a higher Android SDK version. Fix this issue by adding the following to C:\Users\Najeeb Khan\Desktop\codecanyon-30196044-single-market-groceryfoodpharmacy-androidiosadmin-panel-full-app-solution-with-web-site\Market_v2.1.2\customerApp\android\app\build.gradle: android { compileSdkVersion 31 ... }

CodePudding user response:

Change compileSdkVersion to 32 if it is 31 in

android\app\build.gradle

CodePudding user response:

It clearly says that the third-party plugin used in your project (pubspec. yaml) works only on complileSdkVersion 31. Go to your android/app/build. Gradle and change it to compileSdkVersion to 31 or 32. It will work.

  • Related