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
...
}
'FLUTTER' 카테고리의 다른 글
[ERROR]The argument type 'Object' can't be assigned to the parameter type 'PostStatus'. (0) | 2022.11.14 |
---|---|
[Flutter] Post 요청을 수행하는 동안 CERTIFICATE_VERIFY_FAILED 을 해결하는 방법. (0) | 2022.11.03 |
FLUTTER 패키지 추천해주는 사이트! (0) | 2022.10.07 |
is 와 == 연산자의 차이 (2) | 2022.10.05 |
Bad state: Cannot set the body fields of a Request with content-type "application/json" (0) | 2022.09.28 |