Skip to content

Commit de03f54

Browse files
Add tvOS deployment target to podspec (#75)
* Add tvOS deployment target to podspec * Remove unnecessary platform specifier from Podspec Co-authored-by: mcnabbk <[email protected]>
1 parent 73f0e44 commit de03f54

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Segment-Amplitude.podspec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,13 @@ Pod::Spec.new do |s|
1616
s.source = { :git => "https://github.com/segment-integrations/analytics-ios-integration-amplitude.git", :tag => s.version.to_s }
1717
s.social_media_url = 'https://twitter.com/segment'
1818

19-
s.platform = :ios, '10.0'
19+
s.ios.deployment_target = '10.0'
20+
s.tvos.deployment_target = '9.0'
21+
2022
s.requires_arc = true
2123

2224
s.static_framework = true
25+
2326
s.source_files = 'Pod/Classes/**/*'
2427

2528
s.dependency 'Analytics'

0 commit comments

Comments
 (0)