-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Anka
authored and
Anka
committed
May 21, 2024
1 parent
ca1fed1
commit cb901cc
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// swift-tools-version:5.9 | ||
import PackageDescription | ||
|
||
// BEGIN KMMBRIDGE VARIABLES BLOCK (do not edit) | ||
let remoteKotlinUrl = "https://maven.pkg.github.com/Airthings/KmpLog/com/airthings/lib/kmplog-kmmbridge/0.2.10/kmplog-kmmbridge-0.2.10.zip" | ||
let remoteKotlinChecksum = "146e6b0f1941c3969e9cac21e5a3623a768024c9b0591b9ef618df214b5ff353" | ||
let packageName = "KmpLog" | ||
// END KMMBRIDGE BLOCK | ||
|
||
let package = Package( | ||
name: packageName, | ||
platforms: [ | ||
.iOS(.v14) | ||
], | ||
products: [ | ||
.library( | ||
name: packageName, | ||
targets: [packageName] | ||
), | ||
], | ||
targets: [ | ||
.binaryTarget( | ||
name: packageName, | ||
url: remoteKotlinUrl, | ||
checksum: remoteKotlinChecksum | ||
) | ||
, | ||
] | ||
) |