Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bump iOS SDK to version 11.2.0 #13338

Merged
merged 9 commits into from
Sep 24, 2024
3 changes: 0 additions & 3 deletions .github/workflows/ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,6 @@ jobs:
run: |
sudo rm -rf \
/usr/local/share/.cache \
/Users/runner/Library/Caches \
/Users/runner/Library/Developer/Xcode/DerivedData \
/Users/runner/Library/Developer/CoreSimulator/Caches \
/opt/microsoft/msedge \
/opt/microsoft/powershell \
/opt/pipx \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# https://firebase.google.com/support/release-notes/ios
def firebase_sdk_version!()
'11.0.0'
'11.2.0'
end
4 changes: 4 additions & 0 deletions tests/integration_test/e2e_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ import 'firebase_remote_config/firebase_remote_config_e2e_test.dart'
as firebase_remote_config;
import 'firebase_storage/firebase_storage_e2e_test.dart' as firebase_storage;

// Github Actions environment variable
// ignore: do_not_use_environment
final isCI = const String.fromEnvironment('CI').isNotEmpty;

void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
import 'package:tests/firebase_options.dart';

import '../e2e_test.dart';

void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();

group(
'firebase_app_installations',
() {
Expand Down Expand Up @@ -43,6 +44,7 @@ void main() {
]);
expect(ids, isNotNull);
},
skip: defaultTargetPlatform == TargetPlatform.macOS && isCI,
);

test(
Expand Down
2 changes: 1 addition & 1 deletion tests/ios/Runner/AppDelegate.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import UIKit
import Flutter

@UIApplicationMain
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
Expand Down
Loading