-
Notifications
You must be signed in to change notification settings - Fork 475
/
FirebaseGoogleAuthUI.podspec
29 lines (27 loc) · 1.08 KB
/
FirebaseGoogleAuthUI.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
28
29
Pod::Spec.new do |s|
s.name = 'FirebaseGoogleAuthUI'
s.version = '14.2.2'
s.summary = 'Google authentication 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 = 'FirebaseGoogleAuthUI/Sources/Public/FirebaseGoogleAuthUI/*.h'
s.source_files = 'FirebaseGoogleAuthUI/Sources/**/*.{h,m}'
s.dependency 'FirebaseAuth'
s.dependency 'FirebaseCore'
s.dependency 'FirebaseAuthUI', '>= 14.2'
s.dependency 'GoogleSignIn', '~> 7.0'
s.resource_bundles = {
'FirebaseGoogleAuthUI' => ['FirebaseGoogleAuthUI/Sources/{Resources,Strings}/*.{png,lproj}']
}
end