Browse Source

set flutter 3.27.1

sift 2 weeks ago
parent
commit
9a30997d8f
4 changed files with 11 additions and 2 deletions
  1. 3 0
      .fvmrc
  2. 3 0
      .gitignore
  3. 3 0
      .vscode/settings.json
  4. 2 2
      android/app/build.gradle

+ 3 - 0
.fvmrc

@@ -0,0 +1,3 @@
+{
+  "flutter": "3.27.1"
+}

+ 3 - 0
.gitignore

@@ -42,3 +42,6 @@ app.*.map.json
 /android/app/debug
 /android/app/debug
 /android/app/profile
 /android/app/profile
 /android/app/release
 /android/app/release
+
+# FVM Version Cache
+.fvm/

+ 3 - 0
.vscode/settings.json

@@ -0,0 +1,3 @@
+{
+  "dart.flutterSdkPath": ".fvm/versions/3.27.1"
+}

+ 2 - 2
android/app/build.gradle

@@ -24,7 +24,7 @@ if (flutterVersionName == null) {
 
 
 android {
 android {
     namespace "com.example.web_package"
     namespace "com.example.web_package"
-    compileSdkVersion 33
+    compileSdkVersion 34
     // ndkVersion flutter.ndkVersion
     // ndkVersion flutter.ndkVersion
 
 
     compileOptions {
     compileOptions {
@@ -46,7 +46,7 @@ android {
         // You can update the following values to match your application needs.
         // You can update the following values to match your application needs.
         // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
         // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
         minSdkVersion flutter.minSdkVersion
         minSdkVersion flutter.minSdkVersion
-        targetSdkVersion 33
+        targetSdkVersion 34
         versionCode flutterVersionCode.toInteger()
         versionCode flutterVersionCode.toInteger()
         versionName flutterVersionName
         versionName flutterVersionName
     }
     }