Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 44c27c4

Browse files
authoredJun 10, 2024··
Update iOS minimum to 13 (#1190)
1 parent 6ba9709 commit 44c27c4

File tree

25 files changed

+65
-64
lines changed

25 files changed

+65
-64
lines changed
 

‎.github/workflows/phoneauth.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
- name: Setup
6666
run: gem install bundler; bundle install
6767
- name: Build
68+
# (#1191) Fix and remove --allow-warnings
6869
run: |
6970
bundle exec pod lib lint FirebasePhoneAuthUI.podspec \
70-
--include-podspecs=FirebaseAuthUI.podspec
71+
--include-podspecs=FirebaseAuthUI.podspec --allow-warnings

‎FirebaseAnonymousAuthUI.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseAnonymousAuthUI'
3-
s.version = '13.1.0'
3+
s.version = '14.0.0'
44
s.summary = 'Provides anonymous auth support for FirebaseAuthUI.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
77
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
88
s.author = 'Firebase'
99
s.platform = :ios
10-
s.ios.deployment_target = '11.0'
10+
s.ios.deployment_target = '13.0'
1111
s.ios.framework = 'UIKit'
1212
s.requires_arc = true
1313
s.cocoapods_version = '>= 1.8.0'
@@ -19,7 +19,7 @@ Pod::Spec.new do |s|
1919
s.public_header_files = 'FirebaseAnonymousAuthUI/Sources/Public/FirebaseAnonymousAuthUI/*.h'
2020
s.source_files = 'FirebaseAnonymousAuthUI/Sources/**/*.{h,m}'
2121
s.dependency 'FirebaseAuthUI'
22-
s.dependency 'FirebaseAuth', '>= 8.0', '< 11.0'
22+
s.dependency 'FirebaseAuth', '>= 8.0', '< 12.0'
2323
s.dependency 'FirebaseCore'
2424
s.resource_bundles = {
2525
'FirebaseAnonymousAuthUI' => [

‎FirebaseAnonymousAuthUI/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform :ios, '11.0'
1+
platform :ios, '13.0'
22

33
target 'FirebaseAnonymousAuthUI' do
44
use_frameworks!

‎FirebaseAuthUI.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseAuthUI'
3-
s.version = '13.1.0'
3+
s.version = '14.0.0'
44
s.summary = 'A prebuilt authentication UI flow for Firebase Auth.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
77
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
88
s.author = 'Firebase'
99
s.platform = :ios
10-
s.ios.deployment_target = '11.0'
10+
s.ios.deployment_target = '13.0'
1111
s.ios.framework = 'UIKit'
1212
s.requires_arc = true
1313
s.cocoapods_version = '>= 1.8.0'
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818

1919
s.public_header_files = 'FirebaseAuthUI/Sources/Public/FirebaseAuthUI/*.h'
2020
s.source_files = 'FirebaseAuthUI/Sources/**/*.{h,m}'
21-
s.dependency 'FirebaseAuth', '>= 8.0', '< 11.0'
21+
s.dependency 'FirebaseAuth', '>= 8.0', '< 12.0'
2222
s.dependency 'FirebaseCore'
2323
s.resource_bundles = {
2424
'FirebaseAuthUI' => ['FirebaseAuthUI/Sources/{Resources,Strings}/*.{xib,png,lproj}']

‎FirebaseAuthUI/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# source 'sso://cpdc-internal/firebase'
22
source 'https://github.com/CocoaPods/Specs.git'
33

4-
platform :ios, '11.0'
4+
platform :ios, '13.0'
55

66
target 'FirebaseAuthUI' do
77
use_frameworks!

‎FirebaseDatabaseUI.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseDatabaseUI'
3-
s.version = '13.1.0'
3+
s.version = '14.0.0'
44
s.summary = 'Prebuilt data sources and UI bindings for Firebase Database.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
77
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
88
s.author = 'Firebase'
99
s.platform = :ios
10-
s.ios.deployment_target = '11.0'
10+
s.ios.deployment_target = '13.0'
1111
s.ios.framework = 'UIKit'
1212
s.requires_arc = true
1313
s.cocoapods_version = '>= 1.8.0'
@@ -18,6 +18,6 @@ Pod::Spec.new do |s|
1818

1919
s.public_header_files = 'FirebaseDatabaseUI/Sources/Public/FirebaseDatabaseUI/*.h'
2020
s.source_files = 'FirebaseDatabaseUI/Sources/**/*.{h,m}'
21-
s.dependency 'FirebaseDatabase', '>= 8.0', '< 11.0'
21+
s.dependency 'FirebaseDatabase', '>= 8.0', '< 12.0'
2222

2323
end

‎FirebaseDatabaseUI/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# source 'sso://cpdc-internal/firebase'
22
source 'https://github.com/CocoaPods/Specs.git'
33

4-
platform :ios, '11.0'
4+
platform :ios, '13.0'
55

66
target 'FirebaseDatabaseUI' do
77
use_frameworks!

‎FirebaseEmailAuthUI.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseEmailAuthUI'
3-
s.version = '13.1.0'
3+
s.version = '14.0.0'
44
s.summary = 'An email authentication provider for FirebaseAuthUI.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
77
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
88
s.author = 'Firebase'
99
s.platform = :ios
10-
s.ios.deployment_target = '11.0'
10+
s.ios.deployment_target = '13.0'
1111
s.ios.framework = 'UIKit'
1212
s.requires_arc = true
1313
s.cocoapods_version = '>= 1.8.0'

‎FirebaseEmailAuthUI/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# source 'sso://cpdc-internal/firebase'
22
source 'https://github.com/CocoaPods/Specs.git'
33

4-
platform :ios, '11.0'
4+
platform :ios, '13.0'
55

66
target 'FirebaseEmailAuthUI' do
77
use_frameworks!

‎FirebaseFacebookAuthUI.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseFacebookAuthUI'
3-
s.version = '13.1.0'
3+
s.version = '14.0.0'
44
s.summary = 'A Facebook auth provider for FirebaseAuthUI.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
77
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
88
s.author = 'Firebase'
99
s.platform = :ios
10-
s.ios.deployment_target = '11.0'
10+
s.ios.deployment_target = '13.0'
1111
s.ios.framework = 'UIKit'
1212
s.requires_arc = true
1313
s.cocoapods_version = '>= 1.8.0'
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717
}
1818
s.swift_version = '5.3'
1919

20-
s.platform = :ios, '12.0'
20+
s.platform = :ios, '13.0'
2121
s.public_header_files = 'FirebaseFacebookAuthUI/Sources/Public/FirebaseFacebookAuthUI/*.h'
2222
s.source_files = 'FirebaseFacebookAuthUI/Sources/**/*.{h,m}'
2323
s.dependency 'FirebaseAuth'

‎FirebaseFirestoreUI.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseFirestoreUI'
3-
s.version = '13.1.0'
3+
s.version = '14.0.0'
44
s.summary = 'Data libraries and UI bindings for Firestore.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
77
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
88
s.author = 'Firebase'
99
s.platform = :ios
10-
s.ios.deployment_target = '11.0'
10+
s.ios.deployment_target = '13.0'
1111
s.ios.framework = 'UIKit'
1212
s.requires_arc = true
1313
s.cocoapods_version = '>= 1.8.0'
@@ -18,6 +18,6 @@ Pod::Spec.new do |s|
1818

1919
s.public_header_files = 'FirebaseFirestoreUI/Sources/Public/FirebaseFirestoreUI/*.h'
2020
s.source_files = 'FirebaseFirestoreUI/Sources/**/*.{h,m}'
21-
s.dependency 'FirebaseFirestore', '>= 8.0', '< 11.0'
21+
s.dependency 'FirebaseFirestore', '>= 8.0', '< 12.0'
2222

2323
end

‎FirebaseFirestoreUI/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# source 'sso://cpdc-internal/firebase'
22
source 'https://github.com/CocoaPods/Specs.git'
33

4-
platform :ios, '11.0'
4+
platform :ios, '13.0'
55

66
target 'FirebaseFirestoreUI' do
77
use_frameworks!

‎FirebaseGoogleAuthUI.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseGoogleAuthUI'
3-
s.version = '13.1.0'
3+
s.version = '14.0.0'
44
s.summary = 'Google authentication for FirebaseAuthUI.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
77
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
88
s.author = 'Firebase'
99
s.platform = :ios
10-
s.ios.deployment_target = '11.0'
10+
s.ios.deployment_target = '13.0'
1111
s.ios.framework = 'UIKit'
1212
s.requires_arc = true
1313
s.cocoapods_version = '>= 1.8.0'

‎FirebaseGoogleAuthUI/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# source 'sso://cpdc-internal/firebase'
22
source 'https://github.com/CocoaPods/Specs.git'
33

4-
platform :ios, '11.0'
4+
platform :ios, '13.0'
55

66
target 'FirebaseGoogleAuthUI' do
77
use_frameworks!

‎FirebaseOAuthUI.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseOAuthUI'
3-
s.version = '13.1.0'
3+
s.version = '14.0.0'
44
s.summary = 'A collection of OAuth providers for FirebaseAuthUI.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
77
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
88
s.author = 'Firebase'
99
s.platform = :ios
10-
s.ios.deployment_target = '11.0'
10+
s.ios.deployment_target = '13.0'
1111
s.ios.framework = 'UIKit'
1212
s.requires_arc = true
1313
s.cocoapods_version = '>= 1.8.0'
@@ -18,8 +18,8 @@ Pod::Spec.new do |s|
1818

1919
s.public_header_files = 'FirebaseOAuthUI/Sources/Public/FirebaseOAuthUI/*.h'
2020
s.source_files = 'FirebaseOAuthUI/Sources/**/*.{h,m}'
21-
s.dependency 'FirebaseAuthUI', '>= 12.0.2', '< 14.0'
22-
s.dependency 'FirebaseAuth', '>= 8.0', '< 11.0'
21+
s.dependency 'FirebaseAuthUI', '>= 12.0.2', '< 15.0'
22+
s.dependency 'FirebaseAuth', '>= 8.0', '< 12.0'
2323
s.resource_bundles = {
2424
'FirebaseOAuthUI' => ['FirebaseOAuthUI/Sources/{Resources,Strings}/*.{png,lproj}']
2525
}

‎FirebaseOAuthUI/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# source 'sso://cpdc-internal/firebase'
22
source 'https://github.com/CocoaPods/Specs.git'
33

4-
platform :ios, '11.0'
4+
platform :ios, '13.0'
55

66
target 'FirebaseOAuthUI' do
77
use_frameworks!

‎FirebasePhoneAuthUI.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebasePhoneAuthUI'
3-
s.version = '13.1.0'
3+
s.version = '14.0.0'
44
s.summary = 'A phone auth provider for FirebaseAuthUI.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
77
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
88
s.author = 'Firebase'
99
s.platform = :ios
10-
s.ios.deployment_target = '11.0'
10+
s.ios.deployment_target = '13.0'
1111
s.ios.framework = 'UIKit'
1212
s.requires_arc = true
1313
s.cocoapods_version = '>= 1.8.0'

‎FirebasePhoneAuthUI/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# source 'sso://cpdc-internal/firebase'
22
source 'https://github.com/CocoaPods/Specs.git'
33

4-
platform :ios, '11.0'
4+
platform :ios, '13.0'
55

66
target 'FirebasePhoneAuthUI' do
77
use_frameworks!

‎FirebaseStorageUI.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseStorageUI'
3-
s.version = '13.1.0'
3+
s.version = '14.0.0'
44
s.summary = 'UI binding libraries for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
77
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
88
s.author = 'Firebase'
99
s.platform = :ios
10-
s.ios.deployment_target = '11.0'
10+
s.ios.deployment_target = '13.0'
1111
s.ios.framework = 'UIKit'
1212
s.tvos.framework = 'UIKit'
1313
s.requires_arc = true
@@ -17,10 +17,10 @@ Pod::Spec.new do |s|
1717
}
1818
s.swift_version = '5.3'
1919

20-
s.tvos.deployment_target = '11.0'
20+
s.tvos.deployment_target = '13.0'
2121
s.public_header_files = 'FirebaseStorageUI/Sources/Public/FirebaseStorageUI/*.h'
2222
s.source_files = 'FirebaseStorageUI/Sources/**/*.{h,m}'
23-
s.dependency 'FirebaseStorage', '>= 8.0', '< 11.0'
23+
s.dependency 'FirebaseStorage', '>= 8.0', '< 12.0'
2424
s.dependency 'SDWebImage', '~> 5.6'
2525

2626
end

‎FirebaseStorageUI/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# source 'sso://cpdc-internal/firebase'
22
source 'https://github.com/CocoaPods/Specs.git'
33

4-
platform :ios, '11.0'
4+
platform :ios, '13.0'
55

66
target 'FirebaseStorageUI' do
77
use_frameworks!

‎FirebaseUI.podspec

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FirebaseUI'
3-
s.version = '13.1.0'
3+
s.version = '14.0.0'
44
s.summary = 'UI binding libraries for Firebase.'
55
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
66
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
77
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
88
s.author = 'Firebase'
99
s.platform = :ios
10-
s.ios.deployment_target = '12.0'
10+
s.ios.deployment_target = '13.0'
1111
s.ios.framework = 'UIKit'
1212
s.requires_arc = true
1313
s.public_header_files = 'FirebaseUI.h'
@@ -19,43 +19,43 @@ Pod::Spec.new do |s|
1919
}
2020

2121
s.subspec 'Database' do |database|
22-
database.dependency 'FirebaseDatabaseUI', '~> 13.0'
22+
database.dependency 'FirebaseDatabaseUI', '~> 14.0'
2323
end
2424

2525
s.subspec 'Firestore' do |firestore|
26-
firestore.dependency 'FirebaseFirestoreUI', '~> 13.0'
26+
firestore.dependency 'FirebaseFirestoreUI', '~> 14.0'
2727
end
2828

2929
s.subspec 'Storage' do |storage|
30-
storage.dependency 'FirebaseStorageUI', '~> 13.0'
30+
storage.dependency 'FirebaseStorageUI', '~> 14.0'
3131
end
3232

3333
s.subspec 'Auth' do |auth|
34-
auth.dependency 'FirebaseAuthUI', '~> 13.0'
34+
auth.dependency 'FirebaseAuthUI', '~> 14.0'
3535
end
3636

3737
s.subspec 'Anonymous' do |anonymous|
38-
anonymous.dependency 'FirebaseAnonymousAuthUI', '~> 13.0'
38+
anonymous.dependency 'FirebaseAnonymousAuthUI', '~> 14.0'
3939
end
4040

4141
s.subspec 'Email' do |email|
42-
email.dependency 'FirebaseEmailAuthUI', '~> 13.0'
42+
email.dependency 'FirebaseEmailAuthUI', '~> 14.0'
4343
end
4444

4545
s.subspec 'Facebook' do |facebook|
46-
facebook.dependency 'FirebaseFacebookAuthUI', '~> 13.0'
46+
facebook.dependency 'FirebaseFacebookAuthUI', '~> 14.0'
4747
end
4848

4949
s.subspec 'Google' do |google|
50-
google.dependency 'FirebaseGoogleAuthUI', '~> 13.0'
50+
google.dependency 'FirebaseGoogleAuthUI', '~> 14.0'
5151
end
5252

5353
s.subspec 'OAuth' do |oauth|
54-
oauth.dependency 'FirebaseOAuthUI', '~> 13.0'
54+
oauth.dependency 'FirebaseOAuthUI', '~> 14.0'
5555
end
5656

5757
s.subspec 'Phone' do |phone|
58-
phone.dependency 'FirebasePhoneAuthUI', '~> 13.0'
58+
phone.dependency 'FirebasePhoneAuthUI', '~> 14.0'
5959
end
6060

6161
end

‎Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import PackageDescription
2020
let package = Package(
2121
name: "FirebaseUI",
2222
defaultLocalization: "en",
23-
platforms: [.iOS(.v12)],
23+
platforms: [.iOS(.v13)],
2424
products: [
2525
.library(
2626
name: "FirebaseAnonymousAuthUI",
@@ -72,7 +72,7 @@ let package = Package(
7272
.package(
7373
name: "Firebase",
7474
url: "https://github.com/firebase/firebase-ios-sdk.git",
75-
"8.0.0"..<"11.0.0"
75+
"8.0.0"..<"12.0.0"
7676
),
7777
.package(
7878
name: "GoogleSignIn",

‎README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,31 +23,31 @@ If you don't want to use all of FirebaseUI, there are multiple subspecs which ca
2323

2424
```ruby
2525
# Only pull in Firestore features
26-
pod 'FirebaseUI/Firestore', '~> 8.0'
26+
pod 'FirebaseUI/Firestore'
2727

2828
# Only pull in Database features
29-
pod 'FirebaseUI/Database', '~> 8.0'
29+
pod 'FirebaseUI/Database'
3030

3131
# Only pull in Storage features
32-
pod 'FirebaseUI/Storage', '~> 8.0'
32+
pod 'FirebaseUI/Storage'
3333

3434
# Only pull in Auth features
35-
pod 'FirebaseUI/Auth', '~> 8.0'
35+
pod 'FirebaseUI/Auth'
3636

3737
# Only pull in Facebook login features
38-
pod 'FirebaseUI/Facebook', '~> 8.0'
38+
pod 'FirebaseUI/Facebook'
3939

4040
# Only pull in Google login features
41-
pod 'FirebaseUI/Google', '~> 8.0'
41+
pod 'FirebaseUI/Google'
4242

4343
# Only pull in Phone Auth login features
44-
pod 'FirebaseUI/Phone', '~> 8.0'
44+
pod 'FirebaseUI/Phone'
4545
```
4646

4747
If you're including FirebaseUI in a Swift project, make sure you also have:
4848

4949
```ruby
50-
platform :ios, '11.0'
50+
platform :ios, '13.0'
5151
use_frameworks!
5252
```
5353

‎UITests/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
source 'sso://cpdc-internal/firebase'
22
source 'https://github.com/CocoaPods/Specs.git'
33

4-
platform :ios, '9.0'
4+
platform :ios, '13.0'
55

66
target 'FirebaseUISample' do
77
use_frameworks!
8-
platform :ios, '9.0'
8+
platform :ios, '13.0'
99

1010
pod 'OCMock'
1111
pod 'FirebaseUI', :path => '../'

‎samples/objc/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform :ios, '12.0'
1+
platform :ios, '13.0'
22

33
target 'FirebaseUI-demo-objc' do
44
use_frameworks!

0 commit comments

Comments
 (0)
Please sign in to comment.