Skip to content

Commit 8e500de

Browse files
committed
Upgraded to flutter 3.0.0
1 parent 585a1b7 commit 8e500de

File tree

4 files changed

+19
-16
lines changed

4 files changed

+19
-16
lines changed

.github/workflows/flutter-ci-cd.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010

1111
env:
1212
FLUTTER_CHANNEL: 'stable' # 'stable', 'beta', or 'master', default to: 'stable'
13-
FLUTTER_VERSION: '2.10.5'
1413
XCODE_VERSION: '13.2.1'
14+
FLUTTER_VERSION: '3.0.0'
1515
PATH_TO_AAB: 'build/app/outputs/bundle/release/app-release.aab'
1616
ANDROID_PACKAGE_NAME: 'com.daniilshumko.woeios'
1717

ios/Runner/Info.plist

+2
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,7 @@
4343
</array>
4444
<key>UIViewControllerBasedStatusBarAppearance</key>
4545
<false/>
46+
<key>CADisableMinimumFrameDurationOnPhone</key>
47+
<true/>
4648
</dict>
4749
</plist>

pubspec.lock

+8-15
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ packages:
4242
name: collection
4343
url: "https://pub.dartlang.org"
4444
source: hosted
45-
version: "1.15.0"
45+
version: "1.16.0"
4646
cupertino_icons:
4747
dependency: "direct main"
4848
description:
@@ -56,7 +56,7 @@ packages:
5656
name: fake_async
5757
url: "https://pub.dartlang.org"
5858
source: hosted
59-
version: "1.2.0"
59+
version: "1.3.0"
6060
flutter:
6161
dependency: "direct main"
6262
description: flutter
@@ -94,7 +94,7 @@ packages:
9494
name: material_color_utilities
9595
url: "https://pub.dartlang.org"
9696
source: hosted
97-
version: "0.1.3"
97+
version: "0.1.4"
9898
meta:
9999
dependency: transitive
100100
description:
@@ -108,7 +108,7 @@ packages:
108108
name: path
109109
url: "https://pub.dartlang.org"
110110
source: hosted
111-
version: "1.8.0"
111+
version: "1.8.1"
112112
sky_engine:
113113
dependency: transitive
114114
description: flutter
@@ -120,7 +120,7 @@ packages:
120120
name: source_span
121121
url: "https://pub.dartlang.org"
122122
source: hosted
123-
version: "1.8.1"
123+
version: "1.8.2"
124124
stack_trace:
125125
dependency: transitive
126126
description:
@@ -155,20 +155,13 @@ packages:
155155
name: test_api
156156
url: "https://pub.dartlang.org"
157157
source: hosted
158-
version: "0.4.8"
159-
typed_data:
160-
dependency: transitive
161-
description:
162-
name: typed_data
163-
url: "https://pub.dartlang.org"
164-
source: hosted
165-
version: "1.3.0"
158+
version: "0.4.9"
166159
vector_math:
167160
dependency: transitive
168161
description:
169162
name: vector_math
170163
url: "https://pub.dartlang.org"
171164
source: hosted
172-
version: "2.1.1"
165+
version: "2.1.2"
173166
sdks:
174-
dart: ">=2.16.1 <3.0.0"
167+
dart: ">=2.17.0-0 <3.0.0"

windows/flutter/generated_plugins.cmake

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
list(APPEND FLUTTER_PLUGIN_LIST
66
)
77

8+
list(APPEND FLUTTER_FFI_PLUGIN_LIST
9+
)
10+
811
set(PLUGIN_BUNDLED_LIBRARIES)
912

1013
foreach(plugin ${FLUTTER_PLUGIN_LIST})
@@ -13,3 +16,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
1316
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
1417
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
1518
endforeach(plugin)
19+
20+
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
21+
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
22+
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
23+
endforeach(ffi_plugin)

0 commit comments

Comments
 (0)