forked from PostHog/posthog-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PostHog.podspec
28 lines (23 loc) · 954 Bytes
/
PostHog.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
Pod::Spec.new do |s|
s.name = "PostHog"
s.version = "1.4.4"
s.summary = "The hassle-free way to add posthog to your iOS app."
s.description = <<-DESC
PostHog for iOS provides a single API that lets you
integrate with over 100s of tools.
DESC
s.homepage = "http://posthog.com/"
s.license = { :type => 'MIT' }
s.author = { "PostHog" => "[email protected]" }
s.source = { :git => "https://github.com/PostHog/posthog-ios.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/PostHogHQ'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.ios.frameworks = 'CoreTelephony'
s.frameworks = 'Security', 'StoreKit', 'SystemConfiguration', 'UIKit'
s.source_files = [
'PostHog/Classes/**/*',
'PostHog/Internal/**/*',
'PostHog/Vendor/**/*'
]
end