Skip to content

Commit 44c27c4

Browse files
authored
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'

0 commit comments

Comments
 (0)