-
Notifications
You must be signed in to change notification settings - Fork 4
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
28 changed files
with
43 additions
and
861 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
JKDesFireReader.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file was deleted.
Oops, something went wrong.
67 changes: 0 additions & 67 deletions
67
JKDesFireReader.xcodeproj/xcshareddata/xcschemes/JKDesFireReader.xcscheme
This file was deleted.
Oops, something went wrong.
67 changes: 0 additions & 67 deletions
67
JKDesFireReader/JKDesFireReader.xcodeproj/xcshareddata/xcschemes/JKDesFireReader.xcscheme
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"pins" : [ | ||
{ | ||
"identity" : "promisekit", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/mxcl/PromiseKit", | ||
"state" : { | ||
"revision" : "43772616c46a44a9977e41924ae01d0e55f2f9ca", | ||
"version" : "6.18.1" | ||
} | ||
} | ||
], | ||
"version" : 2 | ||
} |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// swift-tools-version: 5.7 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "JKDesFireReader", | ||
platforms: [ | ||
.iOS(.v13) | ||
], | ||
products: [ | ||
// Products define the executables and libraries a package produces, and make them visible to other packages. | ||
.library( | ||
name: "JKDesFireReader", | ||
targets: ["JKDesFireReader"]), | ||
], | ||
dependencies: [ | ||
// Dependencies declare other packages that this package depends on. | ||
.package(url: "https://github.com/mxcl/PromiseKit", from: "6.18.1"), | ||
], | ||
targets: [ | ||
// Targets are the basic building blocks of a package. A target can define a module or a test suite. | ||
// Targets can depend on other targets in this package, and on products in packages this package depends on. | ||
.target( | ||
name: "JKDesFireReader", | ||
dependencies: ["PromiseKit"]), | ||
] | ||
) |
Oops, something went wrong.