-
Notifications
You must be signed in to change notification settings - Fork 478
/
FirebaseOAuthUI.podspec
27 lines (25 loc) · 1.02 KB
/
FirebaseOAuthUI.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = 'FirebaseOAuthUI'
s.version = '14.2.7'
s.summary = 'A collection of OAuth providers for FirebaseAuthUI.'
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/firebase/FirebaseUI-iOS.git', :tag => 'v' + s.version.to_s}
s.author = 'Firebase'
s.platform = :ios
s.ios.deployment_target = '13.0'
s.ios.framework = 'UIKit'
s.requires_arc = true
s.cocoapods_version = '>= 1.8.0'
s.pod_target_xcconfig = {
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
}
s.swift_version = '5.3'
s.public_header_files = 'FirebaseOAuthUI/Sources/Public/FirebaseOAuthUI/*.h'
s.source_files = 'FirebaseOAuthUI/Sources/**/*.{h,m}'
s.dependency 'FirebaseAuthUI', '>= 12.0.2', '< 15.0'
s.dependency 'FirebaseAuth', '>= 8.0', '< 12.0'
s.resource_bundles = {
'FirebaseOAuthUI' => ['FirebaseOAuthUI/Sources/{Resources,Strings}/*.{png,lproj}']
}
end