A package of common functionality used in Swift development.
There are 4 targets, each create a corresponding library product and has its own README.md:
- ColorUtilities
- Keychain
- Utilities
- ViewRenderer
Add a dependency to your Package.swift file or the package list in Xcode:
dependencies:[.package(
url:"https://github.com/BenShutt/Utilities.git",
branch:"develop")]In your target, add the required product dependencies:
dependencies:[.product(name:"ColorUtilities",package:"Utilities"),.product(name:"Keychain",package:"Utilities"),.product(name:"Utilities",package:"Utilities"),.product(name:"ViewRenderer",package:"Utilities")]