forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirebaseStorage.podspec
72 lines (62 loc) · 2.79 KB
/
FirebaseStorage.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
Pod::Spec.new do |s|
s.name = 'FirebaseStorage'
s.version = '3.9.0'
s.summary = 'Firebase Storage'
s.description = <<-DESC
Firebase Storage provides robust, secure file uploads and downloads from Firebase SDKs, powered by Google Cloud Storage.
DESC
s.homepage = 'https://firebase.google.com'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.authors = 'Google, Inc.'
s.source = {
:git => 'https://github.com/firebase/firebase-ios-sdk.git',
:tag => 'Storage-' + s.version.to_s
}
s.social_media_url = 'https://twitter.com/Firebase'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '6.0'
s.cocoapods_version = '>= 1.4.0'
s.static_framework = true
s.prefix_header_file = false
s.source_files = [
'FirebaseStorage/Sources/**/*.[mh]',
'Interop/Auth/Public/*.h',
'FirebaseCore/Sources/Private/*.h',
]
s.public_header_files = 'FirebaseStorage/Sources/Public/FirebaseStorage/*.h'
s.ios.framework = 'MobileCoreServices'
s.osx.framework = 'CoreServices'
s.dependency 'FirebaseCore', '~> 6.10'
s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
s.pod_target_xcconfig = {
'GCC_C_LANGUAGE_STANDARD' => 'c99',
'GCC_PREPROCESSOR_DEFINITIONS' =>
'FIRStorage_VERSION=' + s.version.to_s,
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"'
}
s.test_spec 'unit' do |unit_tests|
unit_tests.platforms = {:ios => '8.0', :osx => '10.11', :tvos => '10.0'}
unit_tests.source_files = 'FirebaseStorage/Tests/Unit/*.[mh]',
'SharedTestUtilities/FIRComponentTestUtilities.*',
'SharedTestUtilities/FIRAuthInteropFake.*'
unit_tests.dependency 'OCMock'
end
s.test_spec 'integration' do |int_tests|
int_tests.platforms = {:ios => '8.0', :osx => '10.11', :tvos => '10.0'}
int_tests.source_files = 'FirebaseStorage/Tests/Integration/*.[mh]'
int_tests.requires_app_host = true
int_tests.resources = 'FirebaseStorage/Tests/Integration/Resources/1mb.dat',
'FirebaseStorage/Tests/Integration/Resources/GoogleService-Info.plist'
int_tests.dependency 'FirebaseAuth', '~> 6.5'
end
s.test_spec 'swift-integration' do |swift_int_tests|
swift_int_tests.platforms = {:ios => '8.0', :osx => '10.11', :tvos => '10.0'}
swift_int_tests.source_files = 'FirebaseStorage/Tests/SwiftIntegration/*.swift'
swift_int_tests.requires_app_host = true
swift_int_tests.resources = 'FirebaseStorage/Tests/Integration/Resources/1mb.dat',
'FirebaseStorage/Tests/Integration/Resources/GoogleService-Info.plist'
swift_int_tests.dependency 'FirebaseAuth', '~> 6.5'
end
end