The SystemKit
open-source library can be used on Apple Platforms such as macOS
, iOS
. and is a common library that enables convenient and efficient use of device system functions.
The installation method for Universal SystemKit can be done through the Swift Package Manager or the Github Repository, and the details are as follows.
If you prefer not to use any of the aforementioned dependency managers, you can integrate SystemKit
into your project manually.
You can pull the SystemKit
Github Repository and include the SystemKit
to build a dynamic or static library.
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.
Once you have your Swift package set up, adding SystemKit
as a dependency is as easy as adding it to the dependencies value of your Package.swift.
-
From the Xcode menu, click File → Swift Packages → Add Package Dependency.
-
In the dialog that appears, enter the repository URL: https://github.com/ChangYeop-Yang/Universal-SystemKit.git.
3-1. In Branch, Enter text "master".
dependencies: [
.package(url: "https://github.com/ChangYeop-Yang/Universal-SystemKit", .branch("master"))
]
3-2. In Branch, Enter text "Version(2, 3, 1)".
dependencies: [
.package(url: "https://github.com/ChangYeop-Yang/Universal-SystemKit", from: Version(2, 3, 1))
]
The detailed build results for the Universal-SystemKit
library are as follows.
Platform | Minimum Swift Version | Installation | Status |
---|---|---|---|
iOS 11.0+ | 5.0 | Swift Package Manager, Manual, Github Repository | ✅ Fully Tested |
macOS 10.13+ (High Sierra) | 5.0 | Swift Package Manager, Manual, Github Repository | ✅ Fully Tested |
The method for using the Universal SystemKit
open-source library is described in the guide path below. For additional related information, please inquire by creating an issue.
SystemKit
is released under the MIT license. See LICENSE for details.
MIT License
Copyright (c) 2022 Universal-SystemKit
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.