Skip to content

Commit

Permalink
KMM SPM package release for 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
runner authored and runner committed Oct 28, 2022
1 parent 6bf7f9f commit 264af94
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/Kashif-E/KMMNewsAPP/releases/assets/82580216.zip"
let remoteKotlinChecksum = "3a844cac709ac1c1a6715128485eb488112e2915599f2d846e3188bda5ea1197"
let packageName = "shared"

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 264af94

Please sign in to comment.