Skip to content

Commit ff1e5f6

Browse files
authoredSep 24, 2024··
feat: bump iOS SDK to version 11.2.0 (#13338)
1 parent cd4759e commit ff1e5f6

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed
 

‎.github/workflows/ios.yaml

-3
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ jobs:
7878
run: |
7979
sudo rm -rf \
8080
/usr/local/share/.cache \
81-
/Users/runner/Library/Caches \
82-
/Users/runner/Library/Developer/Xcode/DerivedData \
83-
/Users/runner/Library/Developer/CoreSimulator/Caches \
8481
/opt/microsoft/msedge \
8582
/opt/microsoft/powershell \
8683
/opt/pipx \
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# https://firebase.google.com/support/release-notes/ios
22
def firebase_sdk_version!()
3-
'11.0.0'
3+
'11.2.0'
44
end

‎tests/integration_test/e2e_test.dart

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ import 'firebase_remote_config/firebase_remote_config_e2e_test.dart'
3030
as firebase_remote_config;
3131
import 'firebase_storage/firebase_storage_e2e_test.dart' as firebase_storage;
3232

33+
// Github Actions environment variable
34+
// ignore: do_not_use_environment
35+
final isCI = const String.fromEnvironment('CI').isNotEmpty;
36+
3337
void main() {
3438
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
3539

‎tests/integration_test/firebase_app_installations/firebase_app_installations_e2e_test.dart

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ import 'package:flutter_test/flutter_test.dart';
99
import 'package:integration_test/integration_test.dart';
1010
import 'package:tests/firebase_options.dart';
1111

12+
import '../e2e_test.dart';
13+
1214
void main() {
1315
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
14-
1516
group(
1617
'firebase_app_installations',
1718
() {
@@ -43,6 +44,7 @@ void main() {
4344
]);
4445
expect(ids, isNotNull);
4546
},
47+
skip: defaultTargetPlatform == TargetPlatform.macOS && isCI,
4648
);
4749

4850
test(

‎tests/ios/Runner/AppDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import UIKit
22
import Flutter
33

4-
@UIApplicationMain
4+
@main
55
@objc class AppDelegate: FlutterAppDelegate {
66
override func application(
77
_ application: UIApplication,

0 commit comments

Comments
 (0)
Please sign in to comment.