-
Notifications
You must be signed in to change notification settings - Fork 488
Expand file tree
/
Copy pathFirebaseStorageUI.podspec
More file actions
26 lines (24 loc) · 972 Bytes
/
FirebaseStorageUI.podspec
File metadata and controls
26 lines (24 loc) · 972 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
25
26
Pod::Spec.new do |s|
s.name = 'FirebaseStorageUI'
s.version = '15.1.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 = '13.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 = '6.0'
s.tvos.deployment_target = '13.0'
s.public_header_files = 'FirebaseStorageUI/Sources/Public/FirebaseStorageUI/*.h'
s.source_files = 'FirebaseStorageUI/Sources/**/*.{h,m}'
s.dependency 'FirebaseStorage', '>= 8.0', '< 13.0'
s.dependency 'SDWebImage', '~> 5.6'
end