Skip to content

Commit 5b802c8

Browse files
firebase-workflow-trigger[bot]firebase-workflow-trigger-botjonsimantov
authored
Update mobile dependencies - Tue Mar 25 2025 (#1701)
* Update mobile dependencies - Tue Mar 25 2025 ### Android - com.google.android.gms.play_services_base → 18.6.0 - com.google.firebase.firebase_bom → 33.11.0 ### iOS - Firebase/Analytics → 11.10.0 - Firebase/AppCheck → 11.10.0 - Firebase/Auth → 11.10.0 - Firebase/Core → 11.10.0 - Firebase/CoreOnly → 11.10.0 - Firebase/Crashlytics → 11.10.0 - Firebase/Database → 11.10.0 - Firebase/DynamicLinks → 11.10.0 - Firebase/Firestore → 11.10.0 - Firebase/Functions → 11.10.0 - Firebase/Installations → 11.10.0 - Firebase/Messaging → 11.10.0 - Firebase/RemoteConfig → 11.10.0 - Firebase/Storage → 11.10.0 > Created by [Update Android and iOS dependencies workflow](https://github.com/firebase/firebase-cpp-sdk/actions/runs/14049288807). * Add release note. * Update C++ version. --------- Co-authored-by: firebase-workflow-trigger-bot <[email protected]> Co-authored-by: Jon Simantov <[email protected]>
1 parent 816db34 commit 5b802c8

File tree

48 files changed

+148
-143
lines changed

Some content is hidden

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

48 files changed

+148
-143
lines changed

Android/firebase_dependencies.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def firebaseDependenciesMap = [
2020
'app_check' : ['com.google.firebase:firebase-appcheck',
2121
'com.google.firebase:firebase-appcheck-debug',
2222
'com.google.firebase:firebase-appcheck-playintegrity'],
23-
'play_services' : ['com.google.android.gms:play-services-base:18.5.0'],
23+
'play_services' : ['com.google.android.gms:play-services-base:18.6.0'],
2424
'analytics' : ['com.google.firebase:firebase-analytics'],
2525
'auth' : ['com.google.firebase:firebase-auth'],
2626
'database' : ['com.google.firebase:firebase-database'],
@@ -159,7 +159,7 @@ project.afterEvaluate {
159159

160160
// Add the bill-of-materials
161161
project.dependencies {
162-
implementation platform('com.google.firebase:firebase-bom:33.10.0')
162+
implementation platform('com.google.firebase:firebase-bom:33.11.0')
163163
}
164164
for (String lib : firebaseCpp.dependencies.libSet) {
165165
// Generate and include the proguard file

analytics/integration_test/Podfile

+2-2
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', '11.9.0'
8+
pod 'Firebase/Analytics', '11.10.0'
99
end
1010

1111
target 'integration_test_tvos' do
1212
platform :tvos, '13.0'
13-
pod 'Firebase/Analytics', '11.9.0'
13+
pod 'Firebase/Analytics', '11.10.0'
1414
end
1515

1616
post_install do |installer|

analytics/ios_headers/FIREventNames.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2025 Google LLC
22

3-
// Copied from Firebase Analytics iOS SDK 11.9.0.
3+
// Copied from Firebase Analytics iOS SDK 11.10.0.
44

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

analytics/ios_headers/FIRParameterNames.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2025 Google LLC
22

3-
// Copied from Firebase Analytics iOS SDK 11.9.0.
3+
// Copied from Firebase Analytics iOS SDK 11.10.0.
44

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

analytics/ios_headers/FIRUserPropertyNames.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2025 Google LLC
22

3-
// Copied from Firebase Analytics iOS SDK 11.9.0.
3+
// Copied from Firebase Analytics iOS SDK 11.10.0.
44

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

app/app_resources/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ android {
5656
}
5757

5858
dependencies {
59-
implementation platform('com.google.firebase:firebase-bom:33.10.0')
59+
implementation platform('com.google.firebase:firebase-bom:33.11.0')
6060
implementation 'com.google.firebase:firebase-analytics'
6161
}
6262

app/google_api_resources/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ android {
5959
}
6060

6161
dependencies {
62-
implementation platform('com.google.firebase:firebase-bom:33.10.0')
62+
implementation platform('com.google.firebase:firebase-bom:33.11.0')
6363
implementation 'com.google.firebase:firebase-analytics'
64-
implementation 'com.google.android.gms:play-services-base:18.5.0'
64+
implementation 'com.google.android.gms:play-services-base:18.6.0'
6565
implementation project(':app:app_resources')
6666
}
6767

app/integration_test/Podfile

+1-1
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', '11.9.0'
7+
pod 'Firebase/Analytics', '11.10.0'
88
end
99

1010
post_install do |installer|

app/invites_resources/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ android {
5555
}
5656

5757
dependencies {
58-
implementation platform('com.google.firebase:firebase-bom:33.10.0')
58+
implementation platform('com.google.firebase:firebase-bom:33.11.0')
5959
implementation 'com.google.firebase:firebase-analytics'
6060
implementation 'com.google.firebase:firebase-dynamic-links'
6161
implementation project(':app:app_resources')

app_check/app_check_resources/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ android {
5555
}
5656

5757
dependencies {
58-
implementation platform('com.google.firebase:firebase-bom:33.10.0')
58+
implementation platform('com.google.firebase:firebase-bom:33.11.0')
5959
implementation 'com.google.firebase:firebase-appcheck'
6060
}
6161

app_check/integration_test/Podfile

+10-10
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', '11.9.0'
8-
pod 'Firebase/Database', '11.9.0'
9-
pod 'Firebase/Auth', '11.9.0'
10-
pod 'Firebase/Storage', '11.9.0'
11-
pod 'Firebase/Functions', '11.9.0'
7+
pod 'Firebase/AppCheck', '11.10.0'
8+
pod 'Firebase/Database', '11.10.0'
9+
pod 'Firebase/Auth', '11.10.0'
10+
pod 'Firebase/Storage', '11.10.0'
11+
pod 'Firebase/Functions', '11.10.0'
1212
end
1313

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

2323
post_install do |installer|

auth/auth_resources/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ android {
5555
}
5656

5757
dependencies {
58-
implementation platform('com.google.firebase:firebase-bom:33.10.0')
58+
implementation platform('com.google.firebase:firebase-bom:33.11.0')
5959
implementation 'com.google.firebase:firebase-analytics'
6060
implementation 'com.google.firebase:firebase-auth'
6161
implementation project(':app:app_resources')

auth/integration_test/Podfile

+2-2
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', '11.9.0'
7+
pod 'Firebase/Auth', '11.10.0'
88
end
99

1010
target 'integration_test_tvos' do
1111
platform :tvos, '13.0'
12-
pod 'Firebase/Auth', '11.9.0'
12+
pod 'Firebase/Auth', '11.10.0'
1313
end
1414

1515
post_install do |installer|

cmake/external/firestore.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endif()
2121
# If the format of the line below changes, then be sure to update
2222
# https://github.com/firebase/firebase-cpp-sdk/blob/fd054fa016/.github/workflows/update-dependencies.yml#L81
2323
#set(version CocoaPods-11.8.1)
24-
set(version CocoaPods-11.9.0)
24+
set(version CocoaPods-11.10.0)
2525

2626
function(GetReleasedDep)
2727
message("Getting released firebase-ios-sdk @ ${version}")

cpp_sdk_version.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"released": "12.6.0",
3-
"stable": "12.6.0",
4-
"head": "12.6.0"
2+
"released": "12.7.0",
3+
"stable": "12.7.0",
4+
"head": "12.7.0"
55
}

database/database_resources/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ android {
5151
}
5252

5353
dependencies {
54-
implementation platform('com.google.firebase:firebase-bom:33.10.0')
54+
implementation platform('com.google.firebase:firebase-bom:33.11.0')
5555
implementation 'com.google.firebase:firebase-analytics'
5656
implementation 'com.google.firebase:firebase-database'
5757
//implementation project(':app:app_resources')

database/integration_test/Podfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/Database', '11.9.0'
8-
pod 'Firebase/Auth', '11.9.0'
7+
pod 'Firebase/Database', '11.10.0'
8+
pod 'Firebase/Auth', '11.10.0'
99
end
1010

1111
target 'integration_test_tvos' do
1212
platform :tvos, '13.0'
13-
pod 'Firebase/Database', '11.9.0'
14-
pod 'Firebase/Auth', '11.9.0'
13+
pod 'Firebase/Database', '11.10.0'
14+
pod 'Firebase/Auth', '11.10.0'
1515
end
1616

1717
post_install do |installer|

dynamic_links/integration_test/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use_frameworks! :linkage => :static
55

66
target 'integration_test' do
77
platform :ios, '13.0'
8-
pod 'Firebase/DynamicLinks', '11.9.0'
8+
pod 'Firebase/DynamicLinks', '11.10.0'
99
end
1010

1111
post_install do |installer|

firestore/firestore_resources/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ android {
5959
}
6060

6161
dependencies {
62-
implementation platform('com.google.firebase:firebase-bom:33.10.0')
62+
implementation platform('com.google.firebase:firebase-bom:33.11.0')
6363
implementation 'com.google.firebase:firebase-analytics'
6464
implementation 'com.google.firebase:firebase-firestore'
6565
}

firestore/integration_test/Podfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/Firestore', '11.9.0'
8-
pod 'Firebase/Auth', '11.9.0'
7+
pod 'Firebase/Firestore', '11.10.0'
8+
pod 'Firebase/Auth', '11.10.0'
99
end
1010

1111
target 'integration_test_tvos' do
1212
platform :tvos, '13.0'
13-
pod 'Firebase/Firestore', '11.9.0'
14-
pod 'Firebase/Auth', '11.9.0'
13+
pod 'Firebase/Firestore', '11.10.0'
14+
pod 'Firebase/Auth', '11.10.0'
1515
end
1616

1717
post_install do |installer|

firestore/integration_test_internal/Podfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/Firestore', '11.9.0'
8-
pod 'Firebase/Auth', '11.9.0'
7+
pod 'Firebase/Firestore', '11.10.0'
8+
pod 'Firebase/Auth', '11.10.0'
99
end
1010

1111
target 'integration_test_tvos' do
1212
platform :tvos, '13.0'
13-
pod 'Firebase/Firestore', '11.9.0'
14-
pod 'Firebase/Auth', '11.9.0'
13+
pod 'Firebase/Firestore', '11.10.0'
14+
pod 'Firebase/Auth', '11.10.0'
1515
end
1616

1717
post_install do |installer|

functions/integration_test/Podfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ use_frameworks! :linkage => :static
44

55
target 'integration_test' do
66
platform :ios, '13.0'
7-
pod 'Firebase/Functions', '11.9.0'
8-
pod 'Firebase/Auth', '11.9.0'
7+
pod 'Firebase/Functions', '11.10.0'
8+
pod 'Firebase/Auth', '11.10.0'
99
end
1010

1111
target 'integration_test_tvos' do
1212
platform :tvos, '13.0'
13-
pod 'Firebase/Functions', '11.9.0'
14-
pod 'Firebase/Auth', '11.9.0'
13+
pod 'Firebase/Functions', '11.10.0'
14+
pod 'Firebase/Auth', '11.10.0'
1515
end
1616

1717
post_install do |installer|

gma/gma_resources/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ android {
5656
}
5757

5858
dependencies {
59-
implementation platform('com.google.firebase:firebase-bom:33.10.0')
59+
implementation platform('com.google.firebase:firebase-bom:33.11.0')
6060
implementation 'com.google.firebase:firebase-analytics'
6161
implementation 'com.google.android.gms:play-services-ads:23.0.0'
6262
implementation 'com.google.android.ump:user-messaging-platform:2.2.0'

gma/integration_test/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use_frameworks! :linkage => :static
55

66
target 'integration_test' do
77
platform :ios, '13.0'
8-
pod 'Firebase/CoreOnly', '11.9.0'
8+
pod 'Firebase/CoreOnly', '11.10.0'
99
pod 'Google-Mobile-Ads-SDK', '11.2.0'
1010
pod 'GoogleUserMessagingPlatform', '2.3.0'
1111
end

installations/integration_test/Podfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ use_frameworks! :linkage => :static
55

66
target 'integration_test' do
77
platform :ios, '13.0'
8-
pod 'Firebase/Analytics', '11.9.0'
9-
pod 'Firebase/Installations', '11.9.0'
8+
pod 'Firebase/Analytics', '11.10.0'
9+
pod 'Firebase/Installations', '11.10.0'
1010
end
1111

1212
post_install do |installer|

ios_pod/Podfile

+13-13
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ platform :ios, '13.0'
33
use_frameworks!
44

55
target 'GetPods' do
6-
pod 'Firebase/Core', '11.9.0'
6+
pod 'Firebase/Core', '11.10.0'
77

88
pod 'Google-Mobile-Ads-SDK', '11.2.0'
99
pod 'GoogleUserMessagingPlatform', '2.3.0'
10-
pod 'Firebase/Analytics', '11.9.0'
11-
pod 'Firebase/AppCheck', '11.9.0'
12-
pod 'Firebase/Auth', '11.9.0'
13-
pod 'Firebase/Crashlytics', '11.9.0'
14-
pod 'Firebase/Database', '11.9.0'
15-
pod 'Firebase/DynamicLinks', '11.9.0'
16-
pod 'Firebase/Firestore', '11.9.0'
17-
pod 'Firebase/Functions', '11.9.0'
18-
pod 'Firebase/Installations', '11.9.0'
19-
pod 'Firebase/Messaging', '11.9.0'
20-
pod 'Firebase/RemoteConfig', '11.9.0'
21-
pod 'Firebase/Storage', '11.9.0'
10+
pod 'Firebase/Analytics', '11.10.0'
11+
pod 'Firebase/AppCheck', '11.10.0'
12+
pod 'Firebase/Auth', '11.10.0'
13+
pod 'Firebase/Crashlytics', '11.10.0'
14+
pod 'Firebase/Database', '11.10.0'
15+
pod 'Firebase/DynamicLinks', '11.10.0'
16+
pod 'Firebase/Firestore', '11.10.0'
17+
pod 'Firebase/Functions', '11.10.0'
18+
pod 'Firebase/Installations', '11.10.0'
19+
pod 'Firebase/Messaging', '11.10.0'
20+
pod 'Firebase/RemoteConfig', '11.10.0'
21+
pod 'Firebase/Storage', '11.10.0'
2222

2323
end
2424

ios_pod/swift_headers/FirebaseAnalytics-Swift.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
33
// Copyright 2025 Google LLC
4-
// Copied from Firebase iOS SDK 11.9.0.
4+
// Copied from Firebase iOS SDK 11.10.0.
55

66
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
77
// clang-1500.1.0.2.5)
@@ -338,7 +338,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
338338

339339
#elif defined(__x86_64__) && __x86_64__
340340
// Copyright 2025 Google LLC
341-
// Copied from Firebase iOS SDK 11.9.0.
341+
// Copied from Firebase iOS SDK 11.10.0.
342342

343343
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
344344
// clang-1500.1.0.2.5)

ios_pod/swift_headers/FirebaseAuth-Swift.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
33
// Copyright 2025 Google LLC
4-
// Copied from Firebase iOS SDK 11.9.0.
4+
// Copied from Firebase iOS SDK 11.10.0.
55

66
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
77
// clang-1500.1.0.2.5)
@@ -3079,7 +3079,7 @@ SWIFT_AVAILABILITY(watchos, introduced = 7)
30793079

30803080
#elif defined(__x86_64__) && __x86_64__
30813081
// Copyright 2025 Google LLC
3082-
// Copied from Firebase iOS SDK 11.9.0.
3082+
// Copied from Firebase iOS SDK 11.10.0.
30833083

30843084
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
30853085
// clang-1500.1.0.2.5)

ios_pod/swift_headers/FirebaseCoreInternal-Swift.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
33
// Copyright 2025 Google LLC
4-
// Copied from Firebase iOS SDK 11.9.0.
4+
// Copied from Firebase iOS SDK 11.10.0.
55

66
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
77
// clang-1500.1.0.2.5)
@@ -402,7 +402,7 @@ SWIFT_CLASS_NAMED("_ObjC_HeartbeatsPayload")
402402

403403
#elif defined(__x86_64__) && __x86_64__
404404
// Copyright 2025 Google LLC
405-
// Copied from Firebase iOS SDK 11.9.0.
405+
// Copied from Firebase iOS SDK 11.10.0.
406406

407407
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56
408408
// clang-1500.1.0.2.5)

0 commit comments

Comments
 (0)