From 305b7e30fbf2cc73ba28e33a09bb3f02e275d01a Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Wed, 24 May 2023 11:53:23 -0300 Subject: [PATCH] fix ios build --- plugins/clipboard-manager/ios/Package.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/clipboard-manager/ios/Package.swift b/plugins/clipboard-manager/ios/Package.swift index 42c3de03..f6200857 100644 --- a/plugins/clipboard-manager/ios/Package.swift +++ b/plugins/clipboard-manager/ios/Package.swift @@ -6,16 +6,16 @@ import PackageDescription let package = Package( - name: "tauri-plugin-clipboard", + name: "tauri-plugin-clipboard-manager", platforms: [ .iOS(.v13), ], products: [ // Products define the executables and libraries a package produces, and make them visible to other packages. .library( - name: "tauri-plugin-clipboard", + name: "tauri-plugin-clipboard-manager", type: .static, - targets: ["tauri-plugin-clipboard"]), + targets: ["tauri-plugin-clipboard-manager"]), ], dependencies: [ .package(name: "Tauri", path: "../.tauri/tauri-api") @@ -24,7 +24,7 @@ let package = Package( // Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets can depend on other targets in this package, and on products in packages this package depends on. .target( - name: "tauri-plugin-clipboard", + name: "tauri-plugin-clipboard-manager", dependencies: [ .byName(name: "Tauri") ],