forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FirebaseInAppMessagingSwift.podspec
39 lines (30 loc) · 1.32 KB
/
FirebaseInAppMessagingSwift.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
Pod::Spec.new do |s|
s.name = 'FirebaseInAppMessagingSwift'
s.version = '10.19.0-beta'
s.summary = 'Swift Extensions for Firebase In-App Messaging'
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://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.swift_version = '5.3'
s.ios.deployment_target = '13.0'
s.cocoapods_version = '>= 1.12.0'
s.prefix_header_file = false
s.source_files = [
'FirebaseInAppMessagingSwift/Sources/**/*.swift',
]
s.test_spec 'unit' do |unit_tests|
unit_tests.scheme = { :code_coverage => true }
unit_tests.source_files = 'FirebaseInAppMessaging/Swift/Tests/Unit/*.swift'
unit_tests.requires_app_host = true
end
s.framework = 'UIKit'
s.dependency 'FirebaseInAppMessaging', '~> 10.17-beta'
end