Skip to content

Commit

Permalink
KMM SPM package release for 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
runner authored and runner committed Nov 25, 2022
1 parent bce0b18 commit bd1df0e
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/customerio/mobile-shared/releases/assets/85927588.zip"
let remoteKotlinChecksum = "1b96b5353d773805f8838d395b33f902cadcb28ad81c3b441f7910ae6cba3f20"
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 bd1df0e

Please sign in to comment.