Skip to content

Commit

Permalink
KMM SPM package release for 0.1.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 4435f10 commit 6edd7bf
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/82568540.zip"
let remoteKotlinChecksum = "520428332655ea5e613ff0ca9db4912dc69d3da68de60aec760f4698ac156286"
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 6edd7bf

Please sign in to comment.