Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set to iOS 9.0 #64

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions AccordionSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ The best way of implement an accordion menu using an UITableView in Swift
s.author = { 'Victor Sigler' => '[email protected]' }
s.source = { :git => 'https://github.com/Vkt0r/AccordionSwift.git', :tag => "v#{s.version.to_s}" }
s.social_media_url = 'https://twitter.com/Vkt0r'
s.swift_version = '5.0'
s.swift_version = '4.2'

s.ios.deployment_target = '10.0'
s.ios.deployment_target = '9.0'
s.source_files = 'Source/*.swift'
end
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PackageDescription

let package = Package(
name: "AccordionSwift",
platforms: [.iOS(.v10)],
platforms: [.iOS(.v9)],
products: [
.library(
name: "AccordionSwift",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ _An accordion/dropdown menu to integrate in your projects. This library is proto


## Requirements 💥
- iOS 10.0+
- iOS 9.0+
- Xcode 10.2+

## Installation
Expand All @@ -50,7 +50,7 @@ To integrate AccordionSwift into your Xcode project using CocoaPods, specify it

```ruby
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
platform :ios, '9.0'
use_frameworks!

target '<Your Target Name>' do
Expand Down