Skip to content

Commit

Permalink
KMM SPM package release for 5.0.0-alpha.5
Browse files Browse the repository at this point in the history
  • Loading branch information
runner authored and runner committed Feb 25, 2023
1 parent 493b05e commit 20b8f53
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Package.swift
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/97022335.zip"
let remoteKotlinChecksum = "00c98017078b7a620586185bba2f175b7cba7a8c0d7bcb5e306c28631e25fe1b"
let packageName = "cache"

let package = Package(
name: packageName,
platforms: [
.iOS(.v13)
],
products: [
.library(
name: packageName,
targets: [packageName]
),
],
targets: [
.binaryTarget(
name: packageName,
url: remoteKotlinUrl,
checksum: remoteKotlinChecksum
)
,
]
)

0 comments on commit 20b8f53

Please sign in to comment.