[flutter]uses-sdk:minSdkVersion 16 cannot be smaller than version 23 declared in library

2021년 02월 12일 by 진아사랑해

    [flutter]uses-sdk:minSdkVersion 16 cannot be smaller than version 23 declared in library 목차
반응형

minSDK의 버전을 올려라

어디에서 minSdkVersion을 올려야 하는지 찾아 보았다

 

 <app dir>/android/app/build.gradle 파일을 수정한다

build.gradle 화일 내용중에

 

    defaultConfig {

        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).

        applicationId "com.example.flappy_game"

        minSdkVersion 23            //16   <- 이 부분^^

        targetSdkVersion 30

        versionCode flutterVersionCode.toInteger()

        versionName flutterVersionName

    }

 

아래의 부분을 변경하면 되는 것이다

minSdkVersion 23            //16

 

즐거운 시간되세요^^

 

반응형