-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSegment-Firebase.podspec
39 lines (31 loc) · 1.33 KB
/
Segment-Firebase.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 = "Segment-Firebase"
s.version = "2.7.7"
s.summary = "Firebase Integration for Segment's analytics-ios library."
s.description = <<-DESC
Analytics for iOS provides a single API that lets you
integrate with over 100s of tools.
This is the Firebase integration for the iOS library.
DESC
s.homepage = "http://segment.com/"
s.license = { :type => 'MIT' }
s.author = { "Segment" => "[email protected]" }
s.source = { :git => "https://github.com/segment-integrations/analytics-ios-integration-firebase.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/segment'
s.platform = :ios, '10.0'
s.requires_arc = true
s.source_files = 'Segment-Firebase/Classes/**/*'
s.default_subspec = 'Core'
s.static_framework = true
s.dependency 'Analytics'
s.dependency 'Firebase', '~> 8.7'
s.dependency 'Firebase/Core', '~> 8.7'
s.dependency 'FirebaseAnalytics','~> 8.7'
s.subspec 'Core' do |core|
#For users who only want the core Firebase package
end
s.subspec 'DynamicLinks' do |dynamiclinks|
# This will bundle in Firebase Dynamic Link support
dynamiclinks.dependency 'Firebase/DynamicLinks'
end
end