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.2
Browse files Browse the repository at this point in the history
  • Loading branch information
runner authored and runner committed Dec 1, 2022
1 parent bee2ca1 commit 7705c0f
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/86646703.zip"
let remoteKotlinChecksum = "2d49ed0b97550502133af431da5424fc3206bcb44799b857d007255d9cb72943"
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 7705c0f

Please sign in to comment.