Skip to content

Commit bb8ee5d

Browse files
firebase-workflow-trigger[bot]firebase-workflow-trigger-bota-maurice
authored
Update iOS dependencies - Tue Jul 30 2024 (firebase#1631)
* Update iOS dependencies - Tue Jul 30 2024 ### iOS - Firebase/Analytics → 11.0.0 - Firebase/AppCheck → 11.0.0 - Firebase/Auth → 11.0.0 - Firebase/Core → 11.0.0 - Firebase/CoreOnly → 11.0.0 - Firebase/Crashlytics → 11.0.0 - Firebase/Database → 11.0.0 - Firebase/DynamicLinks → 11.0.0 - Firebase/Firestore → 11.0.0 - Firebase/Functions → 11.0.0 - Firebase/Installations → 11.0.0 - Firebase/Messaging → 11.0.0 - Firebase/RemoteConfig → 11.0.0 - Firebase/Storage → 11.0.0 > Created by [Update Android and iOS dependencies workflow](https://github.com/firebase/firebase-cpp-sdk/actions/runs/10168827736). * Fixes for Auth * Fix Firestore, and format files * File formatting * Update integration_test tvOS target * Fix Firestore internal test deployment target * Fix OAuth sign-in not disabling tvOS correctly --------- Co-authored-by: firebase-workflow-trigger-bot <[email protected]> Co-authored-by: a-maurice <[email protected]>
1 parent 5363013 commit bb8ee5d

File tree

54 files changed

+6379
-195
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+6379
-195
lines changed

analytics/integration_test/Podfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ use_frameworks! :linkage => :static
55

66
target 'integration_test' do
77
platform :ios, '13.0'
8-
pod 'Firebase/Analytics', '10.28.1'
8+
pod 'Firebase/Analytics', '11.0.0'
99
end
1010

1111
target 'integration_test_tvos' do
12-
platform :tvos, '12.0'
13-
pod 'Firebase/Analytics', '10.28.1'
12+
platform :tvos, '13.0'
13+
pod 'Firebase/Analytics', '11.0.0'
1414
end
1515

1616
post_install do |installer|

analytics/integration_test/integration_test.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@
565565
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
566566
SWIFT_VERSION = 5.3;
567567
TARGETED_DEVICE_FAMILY = 3;
568-
TVOS_DEPLOYMENT_TARGET = 12.0;
568+
TVOS_DEPLOYMENT_TARGET = 13.0;
569569
};
570570
name = Debug;
571571
};
@@ -616,7 +616,7 @@
616616
SDKROOT = appletvos;
617617
SWIFT_VERSION = 5.3;
618618
TARGETED_DEVICE_FAMILY = 3;
619-
TVOS_DEPLOYMENT_TARGET = 12.0;
619+
TVOS_DEPLOYMENT_TARGET = 13.0;
620620
};
621621
name = Release;
622622
};

analytics/ios_headers/FIREventNames.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2024 Google LLC
22

3-
// Copied from Firebase Analytics iOS SDK 10.28.1.
3+
// Copied from Firebase Analytics iOS SDK 11.0.0.
44

55
/// @file FIREventNames.h
66
///

analytics/ios_headers/FIRParameterNames.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2024 Google LLC
22

3-
// Copied from Firebase Analytics iOS SDK 10.28.1.
3+
// Copied from Firebase Analytics iOS SDK 11.0.0.
44

55
/// @file FIRParameterNames.h
66
///

analytics/ios_headers/FIRUserPropertyNames.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2024 Google LLC
22

3-
// Copied from Firebase Analytics iOS SDK 10.28.1.
3+
// Copied from Firebase Analytics iOS SDK 11.0.0.
44

55
/// @file FIRUserPropertyNames.h
66
///

app/integration_test/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ platform :ios, '13.0'
44
use_frameworks! :linkage => :static
55

66
target 'integration_test' do
7-
pod 'Firebase/Analytics', '10.28.1'
7+
pod 'Firebase/Analytics', '11.0.0'
88
end
99

1010
post_install do |installer|

app_check/integration_test/Podfile

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/AppCheck', '10.28.1'
8-
pod 'Firebase/Database', '10.28.1'
9-
pod 'Firebase/Auth', '10.28.1'
10-
pod 'Firebase/Storage', '10.28.1'
11-
pod 'Firebase/Functions', '10.28.1'
7+
pod 'Firebase/AppCheck', '11.0.0'
8+
pod 'Firebase/Database', '11.0.0'
9+
pod 'Firebase/Auth', '11.0.0'
10+
pod 'Firebase/Storage', '11.0.0'
11+
pod 'Firebase/Functions', '11.0.0'
1212
end
1313

1414
target 'integration_test_tvos' do
15-
platform :tvos, '12.0'
16-
pod 'Firebase/AppCheck', '10.28.1'
17-
pod 'Firebase/Database', '10.28.1'
18-
pod 'Firebase/Auth', '10.28.1'
19-
pod 'Firebase/Storage', '10.28.1'
20-
pod 'Firebase/Functions', '10.28.1'
15+
platform :tvos, '13.0'
16+
pod 'Firebase/AppCheck', '11.0.0'
17+
pod 'Firebase/Database', '11.0.0'
18+
pod 'Firebase/Auth', '11.0.0'
19+
pod 'Firebase/Storage', '11.0.0'
20+
pod 'Firebase/Functions', '11.0.0'
2121
end
2222

2323
post_install do |installer|

app_check/integration_test/integration_test.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@
514514
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
515515
SWIFT_VERSION = 5.3;
516516
TARGETED_DEVICE_FAMILY = 3;
517-
TVOS_DEPLOYMENT_TARGET = 12.0;
517+
TVOS_DEPLOYMENT_TARGET = 13.0;
518518
};
519519
name = Debug;
520520
};
@@ -565,7 +565,7 @@
565565
SDKROOT = appletvos;
566566
SWIFT_VERSION = 5.3;
567567
TARGETED_DEVICE_FAMILY = 3;
568-
TVOS_DEPLOYMENT_TARGET = 12.0;
568+
TVOS_DEPLOYMENT_TARGET = 13.0;
569569
};
570570
name = Release;
571571
};

auth/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ target_include_directories(firebase_auth
174174
${CMAKE_CURRENT_LIST_DIR}/src/include
175175
PRIVATE
176176
${FIREBASE_CPP_SDK_ROOT_DIR}
177+
${FIREBASE_CPP_SDK_ROOT_DIR}/ios_pod/swift_headers
177178
${additional_include_DIR}
178179
)
179180
target_compile_definitions(firebase_auth
@@ -201,6 +202,7 @@ elseif(IOS)
201202
POD_NAMES
202203
FirebaseCore
203204
FirebaseAuth
205+
FirebaseAuthInterop/FirebaseAuth/Interop
204206
)
205207
if (FIREBASE_XCODE_TARGET_FORMAT STREQUAL "frameworks")
206208
set_target_properties(firebase_auth PROPERTIES

auth/integration_test/Podfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/Auth', '10.28.1'
7+
pod 'Firebase/Auth', '11.0.0'
88
end
99

1010
target 'integration_test_tvos' do
11-
platform :tvos, '12.0'
12-
pod 'Firebase/Auth', '10.28.1'
11+
platform :tvos, '13.0'
12+
pod 'Firebase/Auth', '11.0.0'
1313
end
1414

1515
post_install do |installer|

0 commit comments

Comments
 (0)