From c6156fe1a6ac7fa6884cc9da451f8560239ba4fe Mon Sep 17 00:00:00 2001 From: qqmikey Date: Mon, 28 Aug 2023 13:43:00 -0500 Subject: [PATCH 1/2] env constraints update --- example/android/app/build.gradle | 4 +- .../android/app/src/main/AndroidManifest.xml | 3 +- example/android/build.gradle | 6 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- example/lib/main.dart | 1 + example/linux/flutter/generated_plugins.cmake | 8 ++ example/pubspec.lock | 125 ++++++++++-------- .../windows/flutter/generated_plugins.cmake | 8 ++ .../gesture_route_transition_mixin.dart | 4 +- .../navigator_gesture_recognizer.dart | 4 +- pubspec.lock | 124 +++++++++-------- pubspec.yaml | 8 +- 12 files changed, 178 insertions(+), 119 deletions(-) diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 56bfa9b..004dcd3 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { - compileSdkVersion 30 + compileSdkVersion 33 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 @@ -45,7 +45,7 @@ android { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "com.example.example" minSdkVersion 16 - targetSdkVersion 30 + targetSdkVersion 33 versionCode flutterVersionCode.toInteger() versionName flutterVersionName } diff --git a/example/android/app/src/main/AndroidManifest.xml b/example/android/app/src/main/AndroidManifest.xml index 34dd77e..3da38e3 100644 --- a/example/android/app/src/main/AndroidManifest.xml +++ b/example/android/app/src/main/AndroidManifest.xml @@ -9,7 +9,8 @@ android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" - android:windowSoftInputMode="adjustResize"> + android:windowSoftInputMode="adjustResize" + android:exported="true">