Fix iOS minimum version
This commit is contained in:
parent
fba5e9ea70
commit
a67e26d75d
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<Workspace
|
||||||
|
version = "1.0">
|
||||||
|
<FileRef
|
||||||
|
location = "self:">
|
||||||
|
</FileRef>
|
||||||
|
</Workspace>
|
||||||
|
|
@ -11,11 +11,11 @@ Pod::Spec.new do |s|
|
||||||
s.source = { :git => "https://github.com/WenchaoD/FSPagerView.git", :tag => s.version.to_s }
|
s.source = { :git => "https://github.com/WenchaoD/FSPagerView.git", :tag => s.version.to_s }
|
||||||
|
|
||||||
s.platform = :ios
|
s.platform = :ios
|
||||||
s.ios.deployment_target = '8.0'
|
s.ios.deployment_target = '9.0'
|
||||||
s.requires_arc = true
|
s.requires_arc = true
|
||||||
s.framework = 'UIKit'
|
s.framework = 'UIKit'
|
||||||
s.source_files = 'Sources/*.{swift,h,m}'
|
s.source_files = 'Sources/*.{swift,h,m}'
|
||||||
s.swift_version = '5.0'
|
s.swift_version = '5.3'
|
||||||
s.cocoapods_version = '>= 1.4.0'
|
s.cocoapods_version = '>= 1.4.0'
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
// swift-tools-version:5.1
|
// swift-tools-version:5.3
|
||||||
import PackageDescription
|
import PackageDescription
|
||||||
|
|
||||||
let package = Package(
|
let package = Package(
|
||||||
name: "FSPagerView",
|
name: "FSPagerView",
|
||||||
platforms: [.iOS(.v8)],
|
platforms: [.iOS(.v9)],
|
||||||
products: [
|
products: [
|
||||||
.library(name: "FSPagerView", targets: ["FSPagerView"]),
|
.library(name: "FSPagerView", targets: ["FSPagerView"]),
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue