From c066e63edaa28fa95c954bceeeaf4372ba54d212 Mon Sep 17 00:00:00 2001 From: Dariusz Rybicki <dariusz@elixxir.io> Date: Fri, 5 Aug 2022 16:17:38 +0100 Subject: [PATCH] Refactor --- Example/example-app/Package.swift | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Example/example-app/Package.swift b/Example/example-app/Package.swift index d19f18b6..8335329a 100644 --- a/Example/example-app/Package.swift +++ b/Example/example-app/Package.swift @@ -15,7 +15,9 @@ let swiftSettings: [SwiftSetting] = [ let package = Package( name: "example-app", - platforms: [.iOS(.v15)], + platforms: [ + .iOS(.v15), + ], products: [ .library(name: "AppFeature", targets: ["AppFeature"]), .library(name: "ErrorFeature", targets: ["ErrorFeature"]), @@ -31,9 +33,10 @@ let package = Package( url: "https://github.com/darrarski/swift-composable-presentation.git", .upToNextMajor(from: "0.5.2") ), - .package( // ElixxirDAppsSDK + .package( + // ElixxirDAppsSDK path: "../../" - ), + ), .package( url: "https://github.com/kishikawakatsumi/KeychainAccess.git", .upToNextMajor(from: "4.2.2") -- GitLab