forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirebaseAppDistribution.podspec
54 lines (44 loc) · 1.67 KB
/
FirebaseAppDistribution.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
Pod::Spec.new do |s|
s.name = 'FirebaseAppDistribution'
s.version = '10.17.0-beta'
s.summary = 'App Distribution for Firebase iOS SDK.'
s.description = <<-DESC
iOS SDK for App Distribution for Firebase.
DESC
s.homepage = 'https://developers.google.com/'
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
s.authors = 'Google, Inc.'
s.source = {
:git => 'https://github.com/firebase/firebase-ios-sdk.git',
:tag => 'CocoaPods-' + s.version.to_s
}
s.ios.deployment_target = '11.0'
s.swift_version = '5.3'
s.cocoapods_version = '>= 1.4.0'
s.prefix_header_file = false
base_dir = "FirebaseAppDistribution/Sources/"
s.source_files = [
base_dir + '**/*.{c,h,m,mm}',
'FirebaseCore/Extension/*.h',
'FirebaseInstallations/Source/Library/Private/*.h',
]
s.public_header_files = base_dir + 'Public/FirebaseAppDistribution/*.h'
s.dependency 'FirebaseCore', '~> 10.0'
s.dependency 'GoogleUtilities/AppDelegateSwizzler', '~> 7.8'
s.dependency 'GoogleUtilities/UserDefaults', '~> 7.8'
s.dependency 'FirebaseInstallations', '~> 10.0'
s.pod_target_xcconfig = {
'GCC_C_LANGUAGE_STANDARD' => 'c99',
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"'
}
s.test_spec 'unit' do |unit_tests|
unit_tests.scheme = { :code_coverage => true }
unit_tests.source_files = [
'FirebaseAppDistribution/Tests/Unit*/*.[mh]',
'FirebaseAppDistribution/Tests/Unit/Swift*/*.swift',
]
unit_tests.requires_app_host = true
unit_tests.resources = 'FirebaseAppDistribution/Tests/Unit/Resources/*'
unit_tests.dependency 'OCMock'
end
end