forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirebaseInstanceID.podspec
77 lines (69 loc) · 2.82 KB
/
FirebaseInstanceID.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
73
74
75
76
77
Pod::Spec.new do |s|
s.name = 'FirebaseInstanceID'
s.version = '7.8.0'
s.summary = 'Firebase InstanceID'
s.description = <<-DESC
Instance ID provides a unique ID per instance of your iOS apps. In addition to providing
unique IDs for authentication, Instance ID can generate security tokens for use with other
services.
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 => 'CocoaPods-' + s.version.to_s
}
s.social_media_url = 'https://twitter.com/Firebase'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '6.0'
s.cocoapods_version = '>= 1.4.0'
s.prefix_header_file = false
base_dir = "Firebase/InstanceID/"
s.source_files = [
base_dir + '**/*.[mh]',
'FirebaseCore/Sources/Private/*.h',
'FirebaseInstallations/Source/Library/Private/*.h',
]
s.requires_arc = base_dir + '*.m'
s.public_header_files = base_dir + 'Public/*.h'
s.pod_target_xcconfig = {
'GCC_C_LANGUAGE_STANDARD' => 'c99',
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"'
}
s.framework = 'Security'
s.dependency 'FirebaseCore', '~> 7.0'
s.dependency 'FirebaseInstallations', '~> 7.0'
s.dependency 'GoogleUtilities/UserDefaults', '~> 7.0'
s.dependency 'GoogleUtilities/Environment', '~> 7.0'
s.test_spec 'unit' do |unit_tests|
unit_tests.scheme = { :code_coverage => true }
unit_tests.platforms = {:ios => '8.0', :osx => '10.11', :tvos => '10.0'}
unit_tests.source_files = 'Example/InstanceID/Tests/*.[mh]'
unit_tests.requires_app_host = true
unit_tests.dependency 'OCMock'
unit_tests.pod_target_xcconfig = {
# Unit tests do library imports using repo-root relative paths.
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
# Prevent linker warning for test category override of
# store:didDeleteFCMScopedTokensForCheckin:
'OTHER_LDFLAGS' => '-Xlinker -no_objc_category_merging',
'CLANG_ENABLE_OBJC_WEAK' => 'YES'
}
end
s.test_spec 'integration' do |int_tests|
int_tests.scheme = { :code_coverage => true }
int_tests.platforms = {:ios => '10.0', :osx => '10.12', :tvos => '10.0'}
int_tests.source_files = 'Example/InstanceID/IntegrationTests/*.[mh]'
int_tests.resources = 'Example/InstanceID/Resources/**/*'
int_tests.requires_app_host = true
if ENV['FIR_IID_INTEGRATION_TESTS_REQUIRED'] && ENV['FIR_IID_INTEGRATION_TESTS_REQUIRED'] == '1' then
int_tests.pod_target_xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' =>
'FIR_IID_INTEGRATION_TESTS_REQUIRED=1'
}
end
end
end