forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirebaseInAppMessaging.podspec
41 lines (33 loc) · 1.44 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
Pod::Spec.new do |s|
s.name = 'FirebaseInAppMessaging'
s.version = '0.15.6'
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', :file => 'LICENSE' }
s.authors = 'Google, Inc.'
s.source = {
:git => 'https://github.com/firebase/firebase-ios-sdk.git',
:tag => 'InAppMessaging-' + 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/InAppMessaging/"
s.source_files = base_dir + '**/*.[cmh]'
s.public_header_files = base_dir + 'Public/*.h'
s.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' =>
'$(inherited) ' +
'FIRInAppMessaging_LIB_VERSION=' + String(s.version) + ' ' +
'PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1'
}
s.dependency 'FirebaseCore', '~> 6.2'
s.ios.dependency 'FirebaseAnalyticsInterop', '~> 1.3'
s.dependency 'FirebaseInstanceID', '~> 4.0'
s.dependency 'GoogleDataTransportCCTSupport', '~> 1.0'
end