相关疑难解决方法(0)

如何处理 Swift 包的依赖工件校验和?

使用 Xcode 12 beta 和 swift-tools-version 5.3,您可以链接到一个框架,如下所示:

        .binaryTarget(
            name: "Stripe",
            url: "https://github.com/stripe/stripe-ios/releases/download/v19.3.0/Stripe.xcframework.zip",
            checksum: "fe459dd443beee5140018388fd6933e09b8787d5b473ec9c2234d75ff0d968bd"
        )
Run Code Online (Sandbox Code Playgroud)

但是当我需要更新校验和(我错了)时,我得到了

: artifact of binary target 'Stripe' has changed checksum; this is a potential security risk so the new artifact won't be downloaded

Run Code Online (Sandbox Code Playgroud)

当我需要更改校验和时,如何重置或覆盖它?

xcode swift-package-manager xcode12

6
推荐指数
1
解决办法
1244
查看次数

标签 统计

swift-package-manager ×1

xcode ×1

xcode12 ×1