Flutter
기본 compileSDKVersion, minSDKVersion, targetSDKVersion 정의 된 곳 (mac)
betterhee
2023. 7. 4. 09:43
open ~/Library/flutter/packages/flutter_tools/gradle/flutter.gradle
/** For apps only. Provides the flutter extension used in app/build.gradle. */
class FlutterExtension {
/** Sets the compileSdkVersion used by default in Flutter app projects. */
static int compileSdkVersion = 33
/** Sets the minSdkVersion used by default in Flutter app projects. */
static int minSdkVersion = 16
/** Sets the targetSdkVersion used by default in Flutter app projects. */
static int targetSdkVersion = 33
// ...
}