One or more plugins require a higher Android SDK version.
...
android {
  compileSdkVersion 33
  ...
}

 

위와  같은 에러가 날 때가 있다. 그럴때는

project > android > app > build.gradle 에 가서

android {
    compileSdkVersion flutter.compileSdkVersion
    ndkVersion flutter.ndkVersion
    ...
    }

위 부분의 compildSdkVersion을 맞는 버전으로 바꿔주면 된다.

android {
    compileSdkVersion 33
    ndkVersion flutter.ndkVersion
    ...
    }

 

+ Recent posts