I am creating an SPM using the binary framework. I upload a zip file on the server and that link is used in SPM.
let package = Package(
name: "MyDemoPackage",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "MyDemoPackage",
targets: ["MyDemoPackage"]),
],
dependencies: [
],
targets: [
.binaryTarget(
name: "MyDemoPackage",
url:"https:domain.com/frameork.zip",
checksum: "29725502a0b4e61c375f71eec3d5432ac84c")
]
)
After compilation shows an error
Showing Recent Messages downloaded archive of binary target 'MyDemoPackage' does not contain expected binary artifact 'MyDemoPackage'.
I am unable to figure out how to resolve this error. Can anyone help me out?
win the url spelling?