Skip to content

Commit

Permalink
add tvOS deployment target
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyxo committed Nov 1, 2015
1 parent 4cfef1b commit ffaeb98
Show file tree
Hide file tree
Showing 5 changed files with 462 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: objective-c
osx_image: xcode7
osx_image: xcode7.1
before_install:
- brew update
- brew uninstall xctool
Expand Down
3 changes: 2 additions & 1 deletion ProtocolBuffers-Swift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ProtocolBuffers-Swift"
s.version = "2.2"
s.version = "2.3"
s.summary = "Protocol Buffers for Swift"
s.homepage = "http://protobuf.io#swift"
s.license = "Apache 2.0"
Expand Down Expand Up @@ -30,6 +30,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'

s.module_name = "ProtocolBuffers"
s.source = { :git => "https://github.com/alexeyxo/protobuf-swift.git", :tag => s.version }
Expand Down
24 changes: 24 additions & 0 deletions src/ProtocolBuffers/ProtocolBuffers(tvOS)Tests/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
Loading

0 comments on commit ffaeb98

Please sign in to comment.