forked from firebase/FirebaseUI-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFirebaseUI_dev_phone.podspec
More file actions
24 lines (23 loc) · 889 Bytes
/
FirebaseUI_dev_phone.podspec
File metadata and controls
24 lines (23 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'FirebasePhoneAuthUI'
s.version = '4.5.0'
s.summary = 'Phone Auth UI binding library for Firebase.'
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
s.license = { :type => 'Apache 2.0' }
s.author = 'Firebase'
s.source = { :git => "https://github.com/firebase/FirebaseUI-iOS.git" }
s.platform = :ios
s.ios.deployment_target = '8.0'
s.ios.framework = 'UIKit'
s.requires_arc = true
s.default_subspecs = 'Phone'
s.subspec 'Phone' do |phone|
phone.source_files = "FirebasePhoneAuthUI/**/*.{h,m}"
phone.resource_bundle = {
'FirebasePhoneAuthUI' => ['FirebasePhoneAuthUI/Strings/**/*',
'FirebasePhoneAuthUI/Resources/**/*',
'FirebasePhoneAuthUI/**/*.xib']
}
phone.dependency 'FirebaseAuthUI/AuthBase'
end
end