-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KMM SPM package release for 5.0.0-alpha.6
- Loading branch information
runner
authored and
runner
committed
Mar 5, 2023
1 parent
022bdb7
commit de760a8
Showing
1 changed file
with
27 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// swift-tools-version:5.3 | ||
import PackageDescription | ||
|
||
let remoteKotlinUrl = "https://api.github.com/repos/MobileNativeFoundation/Store/releases/assets/98144675.zip" | ||
let remoteKotlinChecksum = "0ede6ec06d80d4c2d2c52393730c9ef05ee60f8784ca730a4a441170c79581f9" | ||
let packageName = "store" | ||
|
||
let package = Package( | ||
name: packageName, | ||
platforms: [ | ||
.iOS(.v13) | ||
], | ||
products: [ | ||
.library( | ||
name: packageName, | ||
targets: [packageName] | ||
), | ||
], | ||
targets: [ | ||
.binaryTarget( | ||
name: packageName, | ||
url: remoteKotlinUrl, | ||
checksum: remoteKotlinChecksum | ||
) | ||
, | ||
] | ||
) |