We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56730d8 commit c9b8184Copy full SHA for c9b8184
PowerSyncKotlin/Package.swift
@@ -0,0 +1,25 @@
1
+// swift-tools-version: 5.7
2
+
3
+// NOTE! This is never released, we're only using this to support local Kotlin SDK builds for the
4
+// Swift SDK.
5
+import PackageDescription
6
+let packageName = "PowerSyncKotlin"
7
8
+let package = Package(
9
+ name: packageName,
10
+ platforms: [
11
+ .iOS(.v13),
12
+ .macOS(.v10_15)
13
+ ],
14
+ products: [
15
+ .library(
16
17
+ targets: [packageName]),
18
19
+ targets: [
20
+ .binaryTarget(
21
22
+ path: "build/XCFrameworks/debug/PowerSyncKotlin.xcframework"
23
+ )
24
+ ]
25
+)
0 commit comments