-
-
Notifications
You must be signed in to change notification settings - Fork 487
Installation Guide
EFQRCode is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'EFQRCode', '~> 6.1.0'
Then, run the following command:
$ pod install
IMPORTANT: this workaround is necessary for Carthage to somewhat work in Xcode 12.
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate EFQRCode into your Xcode project using Carthage, specify it in your Cartfile
:
github "EFPrefix/EFQRCode" ~> 6.1.0
Run carthage update
to build the framework and drag the built EFQRCode.framework
into your Xcode project.
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 EFQRCode as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/EFPrefix/EFQRCode.git", .upToNextMinor(from: "6.1.0"))
]
After installation, you could import EFQRCode to your project by adding this:
import EFQRCode
to the files in which you want to use this framework.
Once you prepared, continue to have a look at the Cheat Sheet to see how to use EFQRCode.
- Ask a question ...
- in discussions
- on Stack Overflow
- Submit an issue
- Open a pull request