-
-
Notifications
You must be signed in to change notification settings - Fork 487
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
24 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,7 +108,7 @@ git clone [email protected]:EFPrefix/EFQRCode.git; cd EFQRCode; sh Startup.sh; open | |
EFQRCode 可以通过 [CocoaPods](http://cocoapods.org) 进行获取。只需要在你的 Podfile 中添加如下代码就能实现引入: | ||
|
||
```ruby | ||
pod 'EFQRCode', '~> 5.1.9' | ||
pod 'EFQRCode', '~> 6.0.0' | ||
``` | ||
|
||
如果你需要在 watchOS 中使用的话,请使用 `pod 'EFQRCode/watchOS'`。 | ||
|
@@ -133,7 +133,7 @@ $ brew install carthage | |
通过在你的 `Cartfile` 添加如下语句可以将 EFQRCode 引入你的项目: | ||
|
||
```ogdl | ||
github "EFPrefix/EFQRCode" ~> 5.1.9 | ||
github "EFPrefix/EFQRCode" ~> 6.0.0 | ||
``` | ||
|
||
接下来执行 `carthage update` 命令生成 Framework 并且将生成的 `EFQRCode.framework` 拖入工程即可。 | ||
|
@@ -146,7 +146,7 @@ github "EFPrefix/EFQRCode" ~> 5.1.9 | |
|
||
```swift | ||
dependencies: [ | ||
.package(url: "https://github.com/EFPrefix/EFQRCode.git", .upToNextMinor(from: "5.1.9")) | ||
.package(url: "https://github.com/EFPrefix/EFQRCode.git", .upToNextMinor(from: "6.0.0")) | ||
] | ||
``` | ||
|
||
|