forked from PostHog/posthog-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPostHog.podspec
More file actions
28 lines (23 loc) · 928 Bytes
/
PostHog.podspec
File metadata and controls
28 lines (23 loc) · 928 Bytes
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 = "3.0.0-alpha.5"
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" => "engineering@posthog.com" }
s.source = { :git => "https://github.com/PostHog/posthog-ios.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/PostHog'
s.ios.deployment_target = '13.0'
s.tvos.deployment_target = '13.0'
s.osx.deployment_target = "10.14"
s.watchos.deployment_target = "6.0"
s.swift_versions = "5.3"
s.frameworks = 'Foundation'
s.source_files = [
'PostHog/**/*'
]
end