Skip to content

Commit

Permalink
KMM SPM package release for 5.0.0-alpha.6
Browse files Browse the repository at this point in the history
  • 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.
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/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
)
,
]
)

0 comments on commit de760a8

Please sign in to comment.