forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirebaseInAppMessagingDisplay.podspec
45 lines (37 loc) · 1.46 KB
/
FirebaseInAppMessagingDisplay.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
Pod::Spec.new do |s|
s.name = 'FirebaseInAppMessagingDisplay'
s.version = '0.15.5'
s.summary = 'Firebase In-App Messaging UI for iOS'
s.description = <<-DESC
FirebaseInAppMessagingDisplay is the default client UI implementation for
Firebase In-App Messaging SDK.
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 => 'InAppMessagingDisplay-' + s.version.to_s
}
s.social_media_url = 'https://twitter.com/Firebase'
s.ios.deployment_target = '8.0'
s.cocoapods_version = '>= 1.4.0'
s.static_framework = true
s.prefix_header_file = false
base_dir = "Firebase/InAppMessagingDisplay/"
s.source_files = base_dir + '**/*.[mh]'
s.public_header_files = base_dir + 'Public/*.h'
s.resource_bundles = {
'InAppMessagingDisplayResources' => [ base_dir + 'Resources/*.xib',
base_dir + 'Resources/*.storyboard',
base_dir + 'Resources/*.png']
}
s.pod_target_xcconfig = {
'GCC_C_LANGUAGE_STANDARD' => 'c99',
'GCC_PREPROCESSOR_DEFINITIONS' =>
'$(inherited) ' +
'FIRInAppMessagingDisplay_LIB_VERSION=' + String(s.version)
}
s.dependency 'FirebaseCore', '~> 6.2'
s.dependency 'FirebaseInAppMessaging', '>=0.15.0'
end