Skip to content

Commit 6667024

Browse files
author
Ryan Meier
committed
Integrate Latest @ 250918462
Changes to all... - Update Firebase C++/Unity to use Firebase iOS 6.1.0 - Add the gssapi_krb5 system library, and the GSS and Foundation frameworks to Mac Desktop builds Changes to functions/testapp ... - Update C++ tests to match new iOS behavior. CL: 250918462
1 parent 4e48c4d commit 6667024

File tree

16 files changed

+66
-23
lines changed

16 files changed

+66
-23
lines changed

admob/testapp/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ source 'https://github.com/CocoaPods/Specs.git'
22
platform :ios, '8.0'
33
# AdMob test application.
44
target 'testapp' do
5-
pod 'Firebase/Analytics', '6.0.0'
6-
pod 'Firebase/AdMob', '6.0.0'
5+
pod 'Firebase/Analytics', '6.1.0'
6+
pod 'Firebase/AdMob', '6.1.0'
77
end

analytics/testapp/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ source 'https://github.com/CocoaPods/Specs.git'
22
platform :ios, '8.0'
33
# Analytics test application.
44
target 'testapp' do
5-
pod 'Firebase/Analytics', '6.0.0'
5+
pod 'Firebase/Analytics', '6.1.0'
66
end

auth/testapp/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,11 @@ else()
8787

8888
if(APPLE)
8989
set(ADDITIONAL_LIBS
90+
gssapi_krb5
9091
pthread
9192
"-framework CoreFoundation"
9293
"-framework Foundation"
94+
"-framework GSS"
9395
"-framework Security"
9496
)
9597
elseif(MSVC)

auth/testapp/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ source 'https://github.com/CocoaPods/Specs.git'
22
platform :ios, '8.0'
33
# Auth test application.
44
target 'testapp' do
5-
pod 'Firebase/Analytics', '6.0.0'
6-
pod 'Firebase/Auth', '6.0.0'
5+
pod 'Firebase/Analytics', '6.1.0'
6+
pod 'Firebase/Auth', '6.1.0'
77
end

database/testapp/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,11 @@ else()
8787

8888
if(APPLE)
8989
set(ADDITIONAL_LIBS
90+
gssapi_krb5
9091
pthread
9192
"-framework CoreFoundation"
9293
"-framework Foundation"
94+
"-framework GSS"
9395
"-framework Security"
9496
)
9597
elseif(MSVC)

database/testapp/Podfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ source 'https://github.com/CocoaPods/Specs.git'
22
platform :ios, '8.0'
33
# Firebase Realtime Database test application.
44
target 'testapp' do
5-
pod 'Firebase/Analytics', '6.0.0'
6-
pod 'Firebase/Database', '6.0.0'
7-
pod 'Firebase/Auth', '6.0.0'
5+
pod 'Firebase/Analytics', '6.1.0'
6+
pod 'Firebase/Database', '6.1.0'
7+
pod 'Firebase/Auth', '6.1.0'
88
end

dynamic_links/testapp/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ source 'https://github.com/CocoaPods/Specs.git'
22
platform :ios, '8.0'
33
# Dynamic Links test application.
44
target 'testapp' do
5-
pod 'Firebase/Analytics', '6.0.0'
6-
pod 'Firebase/DynamicLinks', '6.0.0'
5+
pod 'Firebase/Analytics', '6.1.0'
6+
pod 'Firebase/DynamicLinks', '6.1.0'
77
end

functions/testapp/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,15 @@ else()
8787

8888
if(APPLE)
8989
set(ADDITIONAL_LIBS
90+
gssapi_krb5
9091
pthread
9192
"-framework CoreFoundation"
9293
"-framework Foundation"
94+
"-framework GSS"
9395
"-framework Security"
9496
)
9597
elseif(MSVC)
96-
set(ADDITIONAL_LIBS advapi32 ws2_32 crypt32)
98+
set(ADDITIONAL_LIBS advapi32 ws2_32 crypt32 rpcrt4 ole32)
9799
else()
98100
set(ADDITIONAL_LIBS pthread)
99101
endif()

functions/testapp/Podfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ source 'https://github.com/CocoaPods/Specs.git'
22
platform :ios, '8.0'
33
# Cloud Functions for Firebase test application.
44
target 'testapp' do
5-
pod 'Firebase/Analytics', '6.0.0'
6-
pod 'Firebase/Functions', '6.0.0'
7-
pod 'Firebase/Auth', '6.0.0'
5+
pod 'Firebase/Analytics', '6.1.0'
6+
pod 'Firebase/Functions', '6.1.0'
7+
pod 'Firebase/Auth', '6.1.0'
88
end

messaging/testapp/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ source 'https://github.com/CocoaPods/Specs.git'
22
platform :ios, '8.0'
33
# FCM test application.
44
target 'testapp' do
5-
pod 'Firebase/Analytics', '6.0.0'
6-
pod 'Firebase/Messaging', '6.0.0'
5+
pod 'Firebase/Analytics', '6.1.0'
6+
pod 'Firebase/Messaging', '6.1.0'
77
end

0 commit comments

Comments
 (0)