This repository provides
Create a Package.swift
file.
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "SomeProject",
dependencies: [
.package(url: "https://github.com/dankinsoid/${NAME}.git", from: "0.0.1")
],
targets: [
.target(name: "SomeProject", dependencies: ["${NAME}"])
]
)
$ swift build
Add the following line to your Podfile:
pod '${NAME}'
and run pod update
from the podfile directory first.
dankinsoid, [email protected]
${NAME} is available under the MIT license. See the LICENSE file for more info.