- iOS 13.0+
- Xcode 11.0+
Depo is a universal dependency manager that combines Carthage, SPM and CocoaPods and provides common user interface to all of them.
To install Ledger
via Carthage using Depo you need to add this to your Depofile
:
carts:
- kind: github
identifier: rosberry/ledger-ios
To install Ledger via SPM
Add this to your Depofile:
swiftPackages:
- name: Ledger
url: https://github.com/rosberry/ledger-ios.git
version:
operation: upToNextMajor
value: 1.0.0
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate Ledger into your Xcode project using Carthage, specify it in your Cartfile
:
github "rosberry/ledger-ios"
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 Ledger as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/rosberry/ledger-ios.git", .upToNextMajor(from: "1.0.0"))
]
Read the docs. Generated with jazzy. Hosted by GitHub Pages.
This project is owned and maintained by Rosberry. We build mobile apps for users worldwide 🌏.
Check out our open source projects, read our blog or give us a high-five on 🐦 @rosberryapps.
This project is available under the MIT license. See the LICENSE file for more info.