-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set min iOS version support to iOS 11 and macOS 10.13 (#124)
* set min iOS version support to iOS 11 and macOS 10.13 as per issue #123 update the min deployment target from iOS 8 to iOS 11 and macOS 10.10 to macOS 10.13 * Update project.pbxproj disable automatic code signing * Update README.md
- Loading branch information
1 parent
891a476
commit 5005482
Showing
5 changed files
with
19 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Device" | ||
s.version = "3.4.0" | ||
s.version = "3.5.0" | ||
s.summary = "Light weight tool for detecting the current device and screen size written in swift." | ||
|
||
s.description = "Swift library for detecting the running device's model and screen size. With the newer devices, developers have more work to do. This library simplifies their job by allowing them to get information about the running device and easily target the ones they want." | ||
|
@@ -10,8 +10,8 @@ Pod::Spec.new do |s| | |
s.author = { "Lucas Ortis" => "[email protected]" } | ||
s.source = { :git => "https://github.com/Ekhoo/Device.git", :tag => s.version.to_s } | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.osx.deployment_target = '10.10' | ||
s.ios.deployment_target = '11.0' | ||
s.osx.deployment_target = '10.13' | ||
|
||
s.requires_arc = true | ||
s.source_files = "Source/*.swift" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters