Files
ZipArchive/Example/Podfile
T
ddaddyandwilson chen 81d8deeaf0 Xcode 12 warning fixes (#588)
* Bumped Minimum Deployment Target

* Updated for Xcode 12

* Podspec bump minimum deployment target

* Fixed Quoted Brackets xcode 12 warning

* Fixed Carthage Example

* Fixed Example Tests

* Updated Readme

* Update .travis.yml

Support xcode12.

* Update .travis.yml

Co-authored-by: wilson chen <willson.chenwx@gmail.com>
2020-09-08 11:55:09 +08:00

35 lines
563 B
Ruby

source 'https://cdn.cocoapods.org/'
# inhibit_all_warnings!
use_frameworks!
abstract_target 'core' do
pod 'SSZipArchive', :path => '..'
target 'ObjectiveCExample' do
platform :ios, '9.0'
end
target 'ObjectiveCExampleTests_iOS' do
platform :ios, '9.0'
end
target 'ObjectiveCExampleTests_macOS' do
platform :osx, '10.9'
end
target 'ObjectiveCExampleTests_tvOS' do
platform :tvos, '9.0'
end
target 'SwiftExample' do
platform :ios, '9.0'
end
target 'SwiftExample_macOS' do
platform :osx, '10.9'
end
end