Skip to content

Commit 18cc453

Browse files
authored
Merge pull request #9 from thejohnlima/feature/tvos_support
Support tvOS
2 parents 7ac27bf + 8f9ec51 commit 18cc453

File tree

92 files changed

+1178
-20
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+1178
-20
lines changed

β€ŽBaseTracking.podspecβ€Ž

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
Pod::Spec.new do |s|
2-
s.name = "BaseTracking"
3-
s.version = "1.0.5"
4-
s.summary = "BaseTracking is the easiest way to setup your analytics in Swift"
5-
s.requires_arc = true
6-
s.homepage = "https://github.com/thejohnlima/BaseTracking"
7-
s.license = "MIT"
8-
s.author = { "John Lima" => "[email protected]" }
9-
s.social_media_url = "https://twitter.com/thejohnlima"
10-
s.platform = :ios, "9.3"
11-
s.source = { :git => "https://github.com/thejohnlima/BaseTracking.git", :tag => "#{s.version}" }
12-
s.source_files = "Sources/BaseTracking/*.{swift}"
13-
s.swift_version = "5.0"
2+
s.name = "BaseTracking"
3+
s.version = "1.0.5"
4+
s.summary = "BaseTracking is the easiest way to setup your analytics in Swift"
5+
s.requires_arc = true
6+
s.homepage = "https://github.com/thejohnlima/BaseTracking"
7+
s.license = "MIT"
8+
s.author = { "John Lima" => "[email protected]" }
9+
s.social_media_url = "https://twitter.com/thejohnlima"
10+
s.ios.deployment_target = "9.3"
11+
s.tvos.deployment_target = "9.0"
12+
s.watchos.deployment_target = "4.0"
13+
s.source = { :git => "https://github.com/thejohnlima/BaseTracking.git", :tag => "#{s.version}" }
14+
s.source_files = "Sources/BaseTracking/*.{swift}"
15+
s.swift_version = "5.0"
1416
end

0 commit comments

Comments
Β (0)