### Install LicenseKit with Swift Package Manager Source: https://github.com/kankoda/licensekit/blob/main/README.md Add the LicenseKit Git repository URL to your Swift Package Manager dependencies to install the SDK. ```bash https://github.com/Kankoda/LicenseKit.git ``` -------------------------------- ### Initialize LicenseEngine with License Key and Service Source: https://github.com/kankoda/licensekit/blob/main/README.md Create a LicenseEngine instance by providing your license key and defining the desired license service for fetching customer licenses. This example shows various service options. ```swift let licenseEngine = try await LicenseEngine( licenseKey: "your-license-key", licenseStore: .myInternalLicenseStore // optional licenseService: { yourLicense in .api(...) // or... .binary(...) // or... .csvFile(...) // or... .encryptedFile(...) // or... .gumroad(...) // etc... } ) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.