forked from firebase/FirebaseUI-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirebaseStorageUI.podspec
26 lines (24 loc) · 972 Bytes
/
FirebaseStorageUI.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
Pod::Spec.new do |s|
s.name = 'FirebaseStorageUI'
s.version = '12.2.0'
s.summary = 'UI binding libraries for Firebase.'
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 = '10.0'
s.ios.framework = 'UIKit'
s.tvos.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.tvos.deployment_target = '11.0'
s.public_header_files = 'FirebaseStorageUI/Sources/Public/FirebaseStorageUI/*.h'
s.source_files = 'FirebaseStorageUI/Sources/**/*.{h,m}'
s.dependency 'FirebaseStorage', '>= 8.0', '< 10.0'
s.dependency 'SDWebImage', '~> 5.6'
end