File tree 17 files changed +132
-106
lines changed
17 files changed +132
-106
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : macos-13
13
13
steps :
14
14
- uses : actions/checkout@v3
15
- - uses : actions/cache@v3
16
- with :
17
- path : |
18
- ~/.gradle/caches
19
- ~/.gradle/wrapper
20
- key : gradle-android
21
- - uses : actions/cache@v3
22
- id : avd-cache
23
- with :
24
- path : |
25
- ~/.android/avd/*
26
- ~/.android/adb*
27
- key : avd-android
28
15
- uses : actions/setup-java@v3
29
16
with :
30
17
distribution : ' temurin'
@@ -35,19 +22,10 @@ jobs:
35
22
flutter-version : ' 3.x'
36
23
channel : ' stable'
37
24
- run : flutter pub get
38
- - if : steps.avd-cache.outputs.cache-hit != 'true'
39
- uses : reactivecircus/android-emulator-runner@v2
40
- with :
41
- api-level : 30
42
- avd-name : PhoneAPI30
43
- force-avd-creation : false
44
- emulator-options : -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
45
- disable-animations : false
46
- script : echo "Generated AVD snapshot for caching."
47
25
- uses : reactivecircus/android-emulator-runner@v2
48
26
with :
49
- api-level : 30
50
- avd-name : PhoneAPI30
27
+ api-level : 29
28
+ avd-name : PhoneAPI29
51
29
force-avd-creation : false
52
30
emulator-options : -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
53
31
disable-animations : true
Original file line number Diff line number Diff line change 23
23
run : |
24
24
flutter pub get
25
25
cd example/ios && pod install
26
- - run : " cd example && flutter test --verbose integration_test/app_test.dart"
26
+ - run : " cd example && flutter test --verbose --no-enable-impeller integration_test/app_test.dart"
Original file line number Diff line number Diff line change 21
21
flutter config --enable-macos-desktop
22
22
flutter pub get
23
23
cd example/macos && pod install
24
- - run : " cd example && flutter test --verbose -d macos integration_test/app_test.dart"
24
+ - run : " cd example && flutter test --verbose --no-enable-impeller - d macos integration_test/app_test.dart"
25
25
- run : " cd example && flutter test --verbose test/app_test.dart"
Original file line number Diff line number Diff line change
1
+ ## 3.6.3
2
+ - Updated Isolate spawn logic to close gracefully
3
+
1
4
## 3.6.2
2
5
- Add Android namespace, thanks to @nilsreichardt
3
6
Original file line number Diff line number Diff line change 21
21
<key >CFBundleVersion </key >
22
22
<string >1.0 </string >
23
23
<key >MinimumOSVersion </key >
24
- <string >11 .0 </string >
24
+ <string >12 .0 </string >
25
25
</dict >
26
26
</plist >
Original file line number Diff line number Diff line change 1
1
# Uncomment this line to define a global platform for your project
2
- # platform :ios, '11 .0'
2
+ # platform :ios, '12 .0'
3
3
4
4
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5
5
ENV [ 'COCOAPODS_DISABLE_STATS' ] = 'true'
Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ EXTERNAL SOURCES:
20
20
21
21
SPEC CHECKSUMS:
22
22
fast_rsa: 514f0e9ecb93c6222fe4cb61e20a3d7125e734d1
23
- Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
24
- integration_test: a1e7d09bd98eca2fc37aefd79d4f41ad37bdbbe5
23
+ Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
24
+ integration_test: ce0a3ffa1de96d1a89ca0ac26fca7ea18a749ef4
25
25
26
- PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3
26
+ PODFILE CHECKSUM: c4c93c5f6502fe2754f48404d3594bf779584011
27
27
28
- COCOAPODS: 1.11 .3
28
+ COCOAPODS: 1.14 .3
Original file line number Diff line number Diff line change 3
3
archiveVersion = 1;
4
4
classes = {
5
5
};
6
- objectVersion = 51 ;
6
+ objectVersion = 54 ;
7
7
objects = {
8
8
9
9
/* Begin PBXBuildFile section */
155
155
97C146E61CF9000F007C117D /* Project object */ = {
156
156
isa = PBXProject;
157
157
attributes = {
158
- LastUpgradeCheck = 1300 ;
158
+ LastUpgradeCheck = 1510 ;
159
159
ORGANIZATIONNAME = "";
160
160
TargetAttributes = {
161
161
97C146ED1CF9000F007C117D = {
199
199
/* Begin PBXShellScriptBuildPhase section */
200
200
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
201
201
isa = PBXShellScriptBuildPhase;
202
+ alwaysOutOfDate = 1;
202
203
buildActionMask = 2147483647;
203
204
files = (
204
205
);
205
206
inputPaths = (
207
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
206
208
);
207
209
name = "Thin Binary";
208
210
outputPaths = (
213
215
};
214
216
9740EEB61CF901F6004384FC /* Run Script */ = {
215
217
isa = PBXShellScriptBuildPhase;
218
+ alwaysOutOfDate = 1;
216
219
buildActionMask = 2147483647;
217
220
files = (
218
221
);
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<Scheme
3
- LastUpgradeVersion = " 1300 "
3
+ LastUpgradeVersion = " 1510 "
4
4
version = " 1.3" >
5
5
<BuildAction
6
6
parallelizeBuildables = " YES"
Original file line number Diff line number Diff line change 43
43
<false />
44
44
<key >CADisableMinimumFrameDurationOnPhone </key >
45
45
<true />
46
+ <key >UIApplicationSupportsIndirectInputEvents </key >
47
+ <true />
46
48
</dict >
47
49
</plist >
Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ SPEC CHECKSUMS:
19
19
20
20
PODFILE CHECKSUM: 353c8bcc5d5b0994e508d035b5431cfe18c1dea7
21
21
22
- COCOAPODS: 1.12.1
22
+ COCOAPODS: 1.14.3
Original file line number Diff line number Diff line change 203
203
isa = PBXProject;
204
204
attributes = {
205
205
LastSwiftUpdateCheck = 0920;
206
- LastUpgradeCheck = 1300 ;
206
+ LastUpgradeCheck = 1510 ;
207
207
ORGANIZATIONNAME = "The Flutter Authors";
208
208
TargetAttributes = {
209
209
33CC10EC2044A3C60003C045 = {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<Scheme
3
- LastUpgradeVersion = " 1300 "
3
+ LastUpgradeVersion = " 1510 "
4
4
version = " 1.3" >
5
5
<BuildAction
6
6
parallelizeBuildables = " YES"
You can’t perform that action at this time.
0 commit comments