-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added Package file, updated readme, updated min version to 10.2 to ma…
…tch podspec (#25) Co-authored-by: mrpc <[email protected]>
- Loading branch information
Showing
5 changed files
with
59 additions
and
21 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// swift-tools-version:5.5 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "MTGSDKSwift", | ||
platforms: [ | ||
.iOS(.v9) | ||
], | ||
products: [ | ||
.library( | ||
name: "MTGSDKSwift", | ||
targets: ["MTGSDKSwift"]), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target( | ||
name: "MTGSDKSwift", | ||
dependencies: [], | ||
path: "MTGSDKSwift" | ||
), | ||
.testTarget( | ||
name: "MTGSDKSwiftTests", | ||
dependencies: [], | ||
path: "MTGSDKSwiftTests" | ||
), | ||
] | ||
) |
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