forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirebaseCoreDiagnostics.podspec
59 lines (50 loc) · 2.21 KB
/
FirebaseCoreDiagnostics.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
Pod::Spec.new do |s|
s.name = 'FirebaseCoreDiagnostics'
s.version = '1.1.2'
s.summary = 'Firebase Core Diagnostics'
s.description = <<-DESC
Firebase Core Diagnostics collects diagnostic data to help improve and provide Firebase services.
This SDK is integrated using a 'soft-link' mechanism and the bits be omitted by using a
non-Cocoapod integration. This library also respects the Firebase global data collection flag.
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 => 'CoreDiagnostics-' + 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.cocoapods_version = '>= 1.4.0'
s.static_framework = true
s.prefix_header_file = false
header_search_paths = {
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}/Firebase/CoreDiagnostics/"'
}
s.pod_target_xcconfig = {
'GCC_C_LANGUAGE_STANDARD' => 'c99',
'GCC_TREAT_WARNINGS_AS_ERRORS' => 'YES',
'CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY' => 'YES',
'GCC_PREPROCESSOR_DEFINITIONS' =>
# The nanopb pod sets these defs, so we must too. (We *do* require 16bit
# (or larger) fields, so we'd have to set at least PB_FIELD_16BIT
# anyways.)
'PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1',
}.merge(header_search_paths)
s.source_files = 'Firebase/CoreDiagnostics/FIRCDLibrary/**/*.[cmh]'
s.framework = 'Foundation'
s.dependency 'FirebaseCoreDiagnosticsInterop', '~> 1.0'
s.dependency 'GoogleDataTransportCCTSupport', '~> 1.0'
s.dependency 'GoogleUtilities/Environment', '~> 6.2'
s.dependency 'GoogleUtilities/Logger', '~> 6.2'
s.dependency 'nanopb', '~> 0.3.901'
s.test_spec 'unit' do |unit_tests|
unit_tests.dependency 'GoogleUtilities/UserDefaults', '~> 6.2'
unit_tests.dependency 'OCMock'
unit_tests.source_files = 'Example/CoreDiagnostics/Tests/**/*.[mh]'
unit_tests.requires_app_host = false
end
end