I am using xcode version 10.1 and swift 4 I want to add a new dependency https://github.com/IBM-Swift/BlueECC/blob/master/README.md to my existing project I am following the below steps to install using swift package manager
- Navigate to the root folder in terminal
- swift package init
- Open package.swift file in folder and add the .package(url: "https://github.com/IBM-Swift/BlueECC.git", from: "1.2.4") and .target(name: "example", dependencies: ["CryptorECC"]) In respective place
- In terminal give swift build
- Import the package
But the package is not getting imported, please correct me where I am making mistake