Using Xcode 12 beta and swift-tools-version 5.3, you can link to a framework, like this:
.binaryTarget(
name: "Stripe",
url: "https://github.com/stripe/stripe-ios/releases/download/v19.3.0/Stripe.xcframework.zip",
checksum: "fe459dd443beee5140018388fd6933e09b8787d5b473ec9c2234d75ff0d968bd"
)
But when I needed to update the checksum (I had it wrong) I get
: artifact of binary target 'Stripe' has changed checksum; this is a potential security risk so the new artifact won't be downloaded
How can I reset this, or override it when I need to change the checksum?