SystemKit

2.3.2

Universal SystemKit is an open-source library that can be used on Apple platforms such as macOS and iOS. It provides common functionality that can be used across different Apple operating systems.
ChangYeop-Yang/Universal-SystemKit

What's New

Release Universal SystemKit Library 2.3.2

2024-01-29T14:06:53Z

📣 Released on 2024-01-29.

Added

  • SKSecurity -> The ability to perform AES encryption or decryption tasks has been added.

Updated

N/A

Fixed

N/A

New Contributors

Added by @ChangYeop-Yang .

License

MIT License

Copyright (c) 2023 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.

Logo

Tistory - Shields.io LinkedIn - Shields.io Swift Package Manager - Shields.io Manually - Shields.io Github Repository - Shields.io License - Shields.io

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.

Installation

The installation method for Universal SystemKit can be done through the Swift Package Manager or the Github Repository, and the details are as follows.

Manually

If you prefer not to use any of the aforementioned dependency managers, you can integrate SystemKit into your project manually.

Github Repository

You can pull the SystemKit Github Repository and include the SystemKit to build a dynamic or static library.

Swift Package Manager

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.

  1. From the Xcode menu, click File → Swift Packages → Add Package Dependency.

  2. 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))
]

Requirements

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

Using SystemKit

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.

License

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.

Description

  • Swift Tools 5.4.0
View More Packages from this Author

Dependencies

Last updated: Mon Mar 25 2024 22:58:43 GMT-0900 (Hawaii-Aleutian Daylight Time)