Skip to content

Commit 7c3eaec

Browse files
committed
initial commit
1 parent d1222cc commit 7c3eaec

6 files changed

Lines changed: 594 additions & 3 deletions

File tree

Package.resolved

Lines changed: 96 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,23 @@ import PackageDescription
55

66
let package = Package(
77
name: "LiveViewNativePhotoKit",
8+
platforms: [.iOS(.v17), .macOS(.v13)],
89
products: [
910
// Products define the executables and libraries a package produces, making them visible to other packages.
1011
.library(
1112
name: "LiveViewNativePhotoKit",
1213
targets: ["LiveViewNativePhotoKit"]),
1314
],
15+
dependencies: [
16+
.package(url: "https://github.com/liveview-native/liveview-client-swiftui", branch: "core-file-upload")
17+
],
1418
targets: [
1519
// Targets are the basic building blocks of a package, defining a module or a test suite.
1620
// Targets can depend on other targets in this package and products from dependencies.
1721
.target(
18-
name: "LiveViewNativePhotoKit"),
22+
name: "LiveViewNativePhotoKit",
23+
dependencies: [.product(name: "LiveViewNative", package: "liveview-client-swiftui")]
24+
),
1925
.testTarget(
2026
name: "LiveViewNativePhotoKitTests",
2127
dependencies: ["LiveViewNativePhotoKit"]

0 commit comments

Comments
 (0)