微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用 SSH 添加 xcframework 作为 Swift Package 依赖项

如何解决使用 SSH 添加 xcframework 作为 Swift Package 依赖项

当我尝试通过 ssh URL 添加我的 xcframework 作为 swift 包依赖项时,Xcode 给我错误

Showing All Messages
x-swift-package-repository-authentication://?scm=com.apple.dt.Xcode.sourcecontrol.Git&url=git@ghe.somegiturl.git#error=-1005 Authentication Failed because the credentials were missing

我可以通过源树通过相同的 ssh URL 克隆这个 repo,它工作正常。 Package.manifest 文件如下

let package = Package(
name: "Test",platforms: [
         .iOS(.v12)
    ],products: [
    // Products define the executables and libraries a package produces,and make them visible to other packages.
    .library(
        name: "Test",targets: ["Test"]),],dependencies: [
    // Dependencies declare other packages that this package depends on.
    // .package(url: /* package url */,from: "1.0.0"),targets: [
    // Targets are the basic building blocks of a package. A target can define a module or a test suite.
    // Targets can depend on other targets in this package,and on products in packages this package depends on.
    .binaryTarget(
                name: "Test",path: "Test.xcframework"
            ),.testTarget(
        name: "TestTests",dependencies: ["Test"]),]

)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。