-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
FirebaseInAppMessaging.podspec
100 lines (87 loc) · 3.48 KB
/
FirebaseInAppMessaging.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
Pod::Spec.new do |s|
s.name = 'FirebaseInAppMessaging'
s.version = '11.5.0-beta'
s.summary = 'Firebase In-App Messaging for iOS'
s.description = <<-DESC
FirebaseInAppMessaging is the headless component of Firebase In-App Messaging on iOS client side.
See more product details at https://firebase.google.com/products/in-app-messaging/ about Firebase In-App Messaging.
DESC
s.homepage = 'https://firebase.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.social_media_url = 'https://twitter.com/Firebase'
s.ios.deployment_target = '13.0'
s.tvos.deployment_target = '13.0'
s.swift_version = '5.9'
s.cocoapods_version = '>= 1.12.0'
s.prefix_header_file = false
base_dir = "FirebaseInAppMessaging/"
s.ios.source_files = [
base_dir + "Sources/*.[cmh]",
base_dir + "Sources/Analytics/**/*.[cmh]",
base_dir + "Sources/Data/**/*.[cmh]",
base_dir + "Sources/DefaultUI/**/*.[cmh]",
base_dir + "Sources/DisplayTrigger/**/*.[cmh]",
base_dir + "Sources/Flows/**/*.[cmh]",
base_dir + "Sources/Private/**/*.[cmh]",
base_dir + "Sources/Public/**/*.[cmh]",
base_dir + "Sources/RenderingObjects/**/*.[cmh]",
base_dir + "Sources/Runtime/**/*.[cmh]",
base_dir + "Sources/Util/**/*.[cmh]",
base_dir + "Swift/Source/**/*.swift",
'Interop/Analytics/Public/*.h',
'FirebaseABTesting/Sources/Private/*.h',
'FirebaseCore/Extension/*.h',
'FirebaseInstallations/Source/Library/Private/*.h',
]
s.tvos.source_files = [
base_dir + "Sources/*.[cmh]",
base_dir + "Sources/Analytics/**/*.[cmh]",
base_dir + "Sources/Data/**/*.[cmh]",
base_dir + "Sources/DisplayTrigger/**/*.[cmh]",
base_dir + "Sources/Flows/**/*.[cmh]",
base_dir + "Sources/Private/**/*.[cmh]",
base_dir + "Sources/Public/**/*.[cmh]",
base_dir + "Sources/RenderingObjects/**/*.[cmh]",
base_dir + "Sources/Runtime/**/*.[cmh]",
base_dir + "Sources/Util/**/*.[cmh]",
base_dir + "Swift/Source/**/*.swift",
'Interop/Analytics/Public/*.h',
'FirebaseABTesting/Sources/Private/*.h',
'FirebaseCore/Extension/*.h',
'FirebaseInstallations/Source/Library/Private/*.h',
]
s.public_header_files = base_dir + 'Sources/Public/FirebaseInAppMessaging/*.h'
s.ios.resource_bundles = {
'InAppMessagingDisplayResources' => [
base_dir + 'iOS/Resources/*.{storyboard,png}',
]
}
s.pod_target_xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' =>
'$(inherited) ' +
'PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1',
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"'
}
s.framework = 'UIKit'
s.dependency 'FirebaseCore', '11.5'
s.dependency 'FirebaseInstallations', '~> 11.0'
s.dependency 'FirebaseABTesting', '~> 11.0'
s.dependency 'GoogleUtilities/Environment', '~> 8.0'
s.dependency 'GoogleUtilities/UserDefaults', '~> 8.0'
s.dependency 'nanopb', '~> 3.30910.0'
s.test_spec 'unit' do |unit_tests|
unit_tests.scheme = { :code_coverage => true }
unit_tests.source_files = [
'FirebaseInAppMessaging/Tests/Unit/*.[mh]',
'FirebaseInAppMessaging/Swift/Tests/Unit/*.swift'
]
unit_tests.resources = 'FirebaseInAppMessaging/Tests/Unit/*.txt'
unit_tests.requires_app_host = true
unit_tests.dependency 'OCMock'
end
end