Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Commit

Permalink
KMM SPM package release for 0.2.0-alpha0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
runner authored and runner committed Dec 1, 2022
1 parent 679f5e7 commit b9cd920
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/dropbox/componentbox/releases/assets/86645920.zip"
let remoteKotlinChecksum = "564a9003da4bf1aaf6bc4202733fe5de50f1f8cdefd9a738df918bd99da6c74c"
let packageName = "componentbox"

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 b9cd920

Please sign in to comment.