跳至主要内容

插件作者的 Swift Package Manager

Flutter 的 Swift Package Manager 集成具有多个优势

  1. 访问 Swift 包生态系统。Flutter 插件可以使用不断增长的 Swift 包 生态系统!
  2. 简化 Flutter 安装。Swift Package Manager 与 Xcode 捆绑在一起。将来,您无需安装 Ruby 和 CocoaPods 即可定位 iOS 或 macOS。

如果您在 Flutter 的 Swift Package Manager 支持中发现错误,请 提交问题

如何开启 Swift Package Manager

#

默认情况下,Flutter 的 Swift Package Manager 支持处于关闭状态。要开启它

  1. 切换到 Flutter 的 main 渠道

    sh
    flutter channel main --no-cache-artifacts
  2. 升级到最新的 Flutter SDK 并下载工件

    sh
    flutter upgrade
  3. 开启 Swift Package Manager 功能

    sh
    flutter config --enable-swift-package-manager

使用 Flutter CLI 运行应用会 迁移项目 以添加 Swift Package Manager 集成。这使得您的项目下载 Flutter 插件依赖的 Swift 包。具有 Swift Package Manager 集成的应用需要 Flutter 版本 3.24 或更高版本。要使用旧版本的 Flutter,您需要 从应用中移除 Swift Package Manager 集成

对于尚不支持 Swift Package Manager 的依赖项,Flutter 会回退到 CocoaPods。

如何关闭 Swift Package Manager

#

禁用 Swift Package Manager 会导致 Flutter 对所有依赖项使用 CocoaPods。但是,Swift Package Manager 仍然与您的项目集成。要完全从项目中移除 Swift Package Manager 集成,请按照 如何移除 Swift Package Manager 集成 的说明操作。

为单个项目关闭

#

在项目的 pubspec.yaml 文件中,在 flutter 部分下,添加 disable-swift-package-manager: true

pubspec.yaml
yaml
# The following section is specific to Flutter packages.
flutter:
  disable-swift-package-manager: true

这将为该项目的所有贡献者关闭 Swift Package Manager。

全局关闭所有项目

#

运行以下命令

sh
flutter config --no-enable-swift-package-manager

这将为当前用户关闭 Swift Package Manager。

如果项目与 Swift Package Manager 不兼容,则所有贡献者都需要运行此命令。

如何为现有 Flutter 插件添加 Swift Package Manager 支持

#

本指南演示如何为一个已经支持 CocoaPods 的插件添加 Swift Package Manager 支持。这确保了插件可被所有 Flutter 项目使用。

在另行通知之前,Flutter 插件应同时支持 Swift Package Manager 和 CocoaPods。

Swift Package Manager 的采用将是渐进式的。不支持 CocoaPods 的插件将无法被尚未迁移到 Swift Package Manager 的项目使用。不支持 Swift Package Manager 的插件可能会导致已迁移项目的出现问题。

在本指南中,将 plugin_name 替换为您的插件名称。以下示例使用 ios,请根据需要将 ios 替换为 macos/darwin

  1. 开启 Swift Package Manager 功能.

  2. 首先在 iosmacos 和/或 darwin 目录下创建一个目录。将此新目录命名为平台包的名称。

    plugin_name/ios/
    ├── ...
    └── plugin_name/
    
  3. 在此新目录中,创建以下文件/目录

    • Package.swift(文件)
    • Sources(目录)
    • Sources/plugin_name(目录)

    您的插件应如下所示

    plugin_name/ios/
    ├── ...
    └── plugin_name/
       ├── Package.swift
       └── Sources/plugin_name/
    
  4. Package.swift 文件中使用以下模板

    Package.swift
    swift
    // swift-tools-version: 5.9
    // The swift-tools-version declares the minimum version of Swift required to build this package.
    
    import PackageDescription
    
    let package = Package(
        // TODO: Update your plugin name.
        name: "plugin_name",
        platforms: [
            // TODO: Update the platforms your plugin supports.
            // If your plugin only supports iOS, remove `.macOS(...)`.
            // If your plugin only supports macOS, remove `.iOS(...)`.
            .iOS("12.0"),
            .macOS("10.14")
        ],
        products: [
            // TODO: Update your library and target names.
            // If the plugin name contains "_", replace with "-" for the library name.
            .library(name: "plugin-name", targets: ["plugin_name"])
        ],
        dependencies: [],
        targets: [
            .target(
                // TODO: Update your target name.
                name: "plugin_name",
                dependencies: [],
                resources: [
                    // TODO: If your plugin requires a privacy manifest
                    // (e.g. if it uses any required reason APIs), update the PrivacyInfo.xcprivacy file
                    // to describe your plugin's privacy impact, and then uncomment this line.
                    // For more information, see:
                    // https://developer.apple.com/documentation/bundleresources/privacy_manifest_files
                    // .process("PrivacyInfo.xcprivacy"),
    
                    // TODO: If you have other resources that need to be bundled with your plugin, refer to
                    // the following instructions to add them:
                    // https://developer.apple.com/documentation/xcode/bundling-resources-with-a-swift-package
                ]
            )
        ]
    )
  5. 更新 Package.swift 文件中的 支持的平台

    Package.swift
    swift
        platforms: [
            // TODO: Update the platforms your plugin supports.
            // If your plugin only supports iOS, remove `.macOS(...)`.
            // If your plugin only supports macOS, remove `.iOS(...)`.
            .iOS("12.0"),
            .macOS("10.14")
        ],
  6. 更新 Package.swift 文件中的包、库和目标名称。

    Package.swift
    swift
    let package = Package(
        // TODO: Update your plugin name.
        name: "plugin_name",
        platforms: [
            .iOS("12.0"),
            .macOS("10.14")
        ],
        products: [
            // TODO: Update your library and target names.
            // If the plugin name contains "_", replace with "-" for the library name
            .library(name: "plugin-name", targets: ["plugin_name"])
        ],
        dependencies: [],
        targets: [
            .target(
                // TODO: Update your target name.
                name: "plugin_name",
                dependencies: [],
                resources: [
                    // TODO: If your plugin requires a privacy manifest
                    // (e.g. if it uses any required reason APIs), update the PrivacyInfo.xcprivacy file
                    // to describe your plugin's privacy impact, and then uncomment this line.
                    // For more information, see:
                    // https://developer.apple.com/documentation/bundleresources/privacy_manifest_files
                    // .process("PrivacyInfo.xcprivacy"),
    
                    // TODO: If you have other resources that need to be bundled with your plugin, refer to
                    // the following instructions to add them:
                    // https://developer.apple.com/documentation/xcode/bundling-resources-with-a-swift-package
                ]
            )
        ]
    )
  7. 如果您的插件具有 PrivacyInfo.xcprivacy 文件,请将其移动到 ios/plugin_name/Sources/plugin_name/PrivacyInfo.xcprivacy 并取消 Package.swift 文件中资源的注释。

    Package.swift
    swift
                resources: [
                    // TODO: If your plugin requires a privacy manifest
                    // (e.g. if it uses any required reason APIs), update the PrivacyInfo.xcprivacy file
                    // to describe your plugin's privacy impact, and then uncomment this line.
                    // For more information, see:
                    // https://developer.apple.com/documentation/bundleresources/privacy_manifest_files
                    .process("PrivacyInfo.xcprivacy"),
    
                    // TODO: If you have other resources that need to be bundled with your plugin, refer to
                    // the following instructions to add them:
                    // https://developer.apple.com/documentation/xcode/bundling-resources-with-a-swift-package
                ],
  8. 将任何资源文件从 ios/Assets 移动到 ios/plugin_name/Sources/plugin_name(或子目录)。如果适用,请将资源文件添加到 Package.swift 文件中。有关更多说明,请参阅 https://developer.apple.com/documentation/xcode/bundling-resources-with-a-swift-package

  9. 将所有文件从 ios/Classes 移动到 ios/plugin_name/Sources/plugin_name

  10. ios/Assetsios/Resourcesios/Classes 目录现在应该为空,可以删除。

  11. 如果您的插件使用 Pigeon,请更新您的 Pigeon 输入文件。

    pigeons/messages.dart
    dart
    kotlinOptions: KotlinOptions(),
    javaOut: 'android/app/src/main/java/io/flutter/plugins/Messages.java',
    javaOptions: JavaOptions(),
    swiftOut: 'ios/Classes/messages.g.swift',
    swiftOut: 'ios/plugin_name/Sources/plugin_name/messages.g.swift',
    swiftOptions: SwiftOptions(),
  12. 使用您可能需要的任何自定义项更新 Package.swift 文件。

    1. 在 Xcode 中打开 ios/plugin_name/ 目录。

    2. 在 Xcode 中,打开 Package.swift 文件。验证 Xcode 是否没有为此文件生成任何警告或错误。

    3. 如果您的 ios/plugin_name.podspec 文件具有 CocoaPods dependency,请将相应的 Swift Package Manager 依赖项 添加到 Package.swift 文件中。

    4. 如果您的包必须显式链接 staticdynamicApple 不推荐),请更新 Product 以定义类型

      Package.swift
      swift
      products: [
          .library(name: "plugin-name", type: .static, targets: ["plugin_name"])
      ],
    5. 进行任何其他自定义。有关如何编写 Package.swift 文件的更多信息,请参阅 https://developer.apple.com/documentation/packagedescription

  13. 更新 ios/plugin_name.podspec 以指向新路径。

    ios/plugin_name.podspec
    ruby
    s.source_files = 'Classes/**/*.swift'
    s.resource_bundles = {'plugin_name_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
    s.source_files = 'plugin_name/Sources/plugin_name/**/*.swift'
    s.resource_bundles = {'plugin_name_privacy' => ['plugin_name/Sources/plugin_name/PrivacyInfo.xcprivacy']}
  14. 更新从 bundle 加载资源以使用 Bundle.module

    swift
    #if SWIFT_PACKAGE
         let settingsURL = Bundle.module.url(forResource: "image", withExtension: "jpg")
    #else
         let settingsURL = Bundle(for: Self.self).url(forResource: "image", withExtension: "jpg")
    #endif
  15. 将插件的更改提交到您的版本控制系统。

  16. 验证插件是否仍与 CocoaPods 兼容。

    1. 关闭 Swift Package Manager。

      sh
      flutter config --no-enable-swift-package-manager
    2. 导航到插件的示例应用。

      sh
      cd path/to/plugin/example/
    3. 确保插件的示例应用可以构建并运行。

      sh
      flutter run
    4. 导航到插件的顶级目录。

      sh
      cd path/to/plugin/
    5. 运行 CocoaPods 验证 lint。

      sh
      pod lib lint ios/plugin_name.podspec  --configuration=Debug --skip-tests --use-modular-headers --use-libraries
      sh
      pod lib lint ios/plugin_name.podspec  --configuration=Debug --skip-tests --use-modular-headers
  17. 验证插件是否与 Swift Package Manager 兼容。

    1. 开启 Swift Package Manager。

      sh
      flutter config --enable-swift-package-manager
    2. 导航到插件的示例应用。

      sh
      cd path/to/plugin/example/
    3. 确保插件的示例应用可以构建并运行。

      sh
      flutter run
    4. 在 Xcode 中打开插件的示例应用。确保左侧的**项目导航器**中显示了**包依赖项**。

  18. 验证测试是否通过。

在本指南中,将 plugin_name 替换为您的插件名称。以下示例使用 ios,请根据需要将 ios 替换为 macos/darwin

  1. 开启 Swift Package Manager 功能.

  2. 首先在 iosmacos 和/或 darwin 目录下创建一个目录。将此新目录命名为平台包的名称。

    plugin_name/ios/
    ├── ...
    └── plugin_name/
    
  3. 在此新目录中,创建以下文件/目录

    • Package.swift(文件)
    • Sources(目录)
    • Sources/plugin_name(目录)
    • Sources/plugin_name/include(目录)
    • Sources/plugin_name/include/plugin_name(目录)
    • Sources/plugin_name/include/plugin_name/.gitkeep(文件)

      • 此文件确保提交目录。如果将其他文件添加到目录中,可以删除.gitkeep文件。

    您的插件应如下所示

    plugin_name/ios/
    ├── ...
    └── plugin_name/
       ├── Package.swift
       └── Sources/plugin_name/include/plugin_name/
          └── .gitkeep
    
  4. Package.swift 文件中使用以下模板

    Package.swift
    swift
    // swift-tools-version: 5.9
    // The swift-tools-version declares the minimum version of Swift required to build this package.
    
    import PackageDescription
    
    let package = Package(
        // TODO: Update your plugin name.
        name: "plugin_name",
        platforms: [
            // TODO: Update the platforms your plugin supports.
            // If your plugin only supports iOS, remove `.macOS(...)`.
            // If your plugin only supports macOS, remove `.iOS(...)`.
            .iOS("12.0"),
            .macOS("10.14")
        ],
        products: [
            // TODO: Update your library and target names.
            // If the plugin name contains "_", replace with "-" for the library name
            .library(name: "plugin-name", targets: ["plugin_name"])
        ],
        dependencies: [],
        targets: [
            .target(
                // TODO: Update your target name.
                name: "plugin_name",
                dependencies: [],
                resources: [
                    // TODO: If your plugin requires a privacy manifest
                    // (e.g. if it uses any required reason APIs), update the PrivacyInfo.xcprivacy file
                    // to describe your plugin's privacy impact, and then uncomment this line.
                    // For more information, see:
                    // https://developer.apple.com/documentation/bundleresources/privacy_manifest_files
                    // .process("PrivacyInfo.xcprivacy"),
    
                    // TODO: If you have other resources that need to be bundled with your plugin, refer to
                    // the following instructions to add them:
                    // https://developer.apple.com/documentation/xcode/bundling-resources-with-a-swift-package
                ],
                cSettings: [
                    // TODO: Update your plugin name.
                    .headerSearchPath("include/plugin_name")
                ]
            )
        ]
    )
  5. 更新 Package.swift 文件中的 支持的平台

    Package.swift
    swift
        platforms: [
            // TODO: Update the platforms your plugin supports.
            // If your plugin only supports iOS, remove `.macOS(...)`.
            // If your plugin only supports macOS, remove `.iOS(...)`.
            .iOS("12.0"),
            .macOS("10.14")
        ],
  6. 更新 Package.swift 文件中的包、库和目标名称。

    Package.swift
    swift
    let package = Package(
        // TODO: Update your plugin name.
        name: "plugin_name",
        platforms: [
            .iOS("12.0"),
            .macOS("10.14")
        ],
        products: [
            // TODO: Update your library and target names.
            // If the plugin name contains "_", replace with "-" for the library name
            .library(name: "plugin-name", targets: ["plugin_name"])
        ],
        dependencies: [],
        targets: [
            .target(
                // TODO: Update your target name.
                name: "plugin_name",
                dependencies: [],
                resources: [
                    // TODO: If your plugin requires a privacy manifest
                    // (e.g. if it uses any required reason APIs), update the PrivacyInfo.xcprivacy file
                    // to describe your plugin's privacy impact, and then uncomment this line.
                    // For more information, see:
                    // https://developer.apple.com/documentation/bundleresources/privacy_manifest_files
                    // .process("PrivacyInfo.xcprivacy"),
    
                    // TODO: If you have other resources that need to be bundled with your plugin, refer to
                    // the following instructions to add them:
                    // https://developer.apple.com/documentation/xcode/bundling-resources-with-a-swift-package
                ],
                cSettings: [
                    // TODO: Update your plugin name.
                    .headerSearchPath("include/plugin_name")
                ]
            )
        ]
    )
  7. 如果您的插件具有 PrivacyInfo.xcprivacy 文件,请将其移动到 ios/plugin_name/Sources/plugin_name/PrivacyInfo.xcprivacy 并取消 Package.swift 文件中资源的注释。

    Package.swift
    swift
                resources: [
                    // TODO: If your plugin requires a privacy manifest
                    // (e.g. if it uses any required reason APIs), update the PrivacyInfo.xcprivacy file
                    // to describe your plugin's privacy impact, and then uncomment this line.
                    // For more information, see:
                    // https://developer.apple.com/documentation/bundleresources/privacy_manifest_files
                    .process("PrivacyInfo.xcprivacy"),
    
                    // TODO: If you have other resources that need to be bundled with your plugin, refer to
                    // the following instructions to add them:
                    // https://developer.apple.com/documentation/xcode/bundling-resources-with-a-swift-package
                ],
  8. 将任何资源文件从 ios/Assets 移动到 ios/plugin_name/Sources/plugin_name(或子目录)。如果适用,请将资源文件添加到 Package.swift 文件中。有关更多说明,请参阅 https://developer.apple.com/documentation/xcode/bundling-resources-with-a-swift-package

  9. 将任何公共头文件从ios/Classes移动到ios/plugin_name/Sources/plugin_name/include/plugin_name

    • 如果您不确定哪些头文件是公共的,请检查您的podspec文件的public_header_files属性。如果未指定此属性,则所有头文件都是公共的。您应该考虑是否希望所有头文件都为公共的。

    • 在您的pubspec.yaml文件中定义的pluginClass必须是公共的,并且位于此目录中。

  10. 处理modulemap

    如果您的插件没有modulemap,请跳过此步骤。

    如果您正在使用modulemap让CocoaPods创建测试子模块,请考虑将其从Swift Package Manager中移除。请注意,这使得所有公共头文件都可通过模块访问。

    要移除Swift Package Manager的modulemap但保留CocoaPods的modulemap,请在插件的Package.swift文件中排除modulemap和伞形头文件。

    以下示例假设modulemap和伞形头文件位于ios/plugin_name/Sources/plugin_name/include目录中。

    Package.swift
    swift
    .target(
        name: "plugin_name",
        dependencies: [],
        exclude: ["include/cocoapods_plugin_name.modulemap", "include/plugin_name-umbrella.h"],

    如果您希望保持单元测试与CocoaPods和Swift Package Manager兼容,您可以尝试以下操作

    Tests/TestFile.m
    objc
    @import plugin_name;
    @import plugin_name.Test;
    #if __has_include(<plugin_name/plugin_name-umbrella.h>)
      @import plugin_name.Test;
    #endif

    如果您想在Swift包中使用自定义modulemap,请参阅Swift Package Manager的文档

  11. ios/Classes中所有剩余的文件移动到ios/plugin_name/Sources/plugin_name

  12. ios/Assetsios/Resourcesios/Classes 目录现在应该为空,可以删除。

  13. 如果您的头文件不再与您的实现文件位于同一目录中,则应更新您的导入语句。

    例如,假设以下迁移

    • 之前

      ios/Classes/
      ├── PublicHeaderFile.h
      └── ImplementationFile.m
      
    • 之后

      ios/plugin_name/Sources/plugin_name/
      └── include/plugin_name/
         └── PublicHeaderFile.h
      └── ImplementationFile.m
      

    在此示例中,应更新ImplementationFile.m中的导入语句

    Sources/plugin_name/ImplementationFile.m
    objc
    #import "PublicHeaderFile.h"
    #import "./include/plugin_name/PublicHeaderFile.h"
  14. 如果您的插件使用 Pigeon,请更新您的 Pigeon 输入文件。

    pigeons/messages.dart
    dart
    javaOptions: JavaOptions(),
    objcHeaderOut: 'ios/Classes/messages.g.h',
    objcSourceOut: 'ios/Classes/messages.g.m',
    objcHeaderOut: 'ios/plugin_name/Sources/plugin_name/messages.g.h',
    objcSourceOut: 'ios/plugin_name/Sources/plugin_name/messages.g.m',
    copyrightHeader: 'pigeons/copyright.txt',

    如果您的objcHeaderOut文件不再与objcSourceOut位于同一目录中,您可以使用ObjcOptions.headerIncludePath更改#import

    pigeons/messages.dart
    dart
    javaOptions: JavaOptions(),
    objcHeaderOut: 'ios/Classes/messages.g.h',
    objcSourceOut: 'ios/Classes/messages.g.m',
    objcHeaderOut: 'ios/plugin_name/Sources/plugin_name/include/plugin_name/messages.g.h',
    objcSourceOut: 'ios/plugin_name/Sources/plugin_name/messages.g.m',
    objcOptions: ObjcOptions(
      headerIncludePath: './include/plugin_name/messages.g.h',
    ),
    copyrightHeader: 'pigeons/copyright.txt',

    运行Pigeon以使用最新配置重新生成其代码。

  15. 使用您可能需要的任何自定义项更新 Package.swift 文件。

    1. 在 Xcode 中打开 ios/plugin_name/ 目录。

    2. 在 Xcode 中,打开 Package.swift 文件。验证 Xcode 是否没有为此文件生成任何警告或错误。

    3. 如果您的 ios/plugin_name.podspec 文件具有 CocoaPods dependency,请将相应的 Swift Package Manager 依赖项 添加到 Package.swift 文件中。

    4. 如果您的包必须显式链接 staticdynamicApple 不推荐),请更新 Product 以定义类型

      Package.swift
      swift
      products: [
          .library(name: "plugin-name", type: .static, targets: ["plugin_name"])
      ],
    5. 进行任何其他自定义。有关如何编写 Package.swift 文件的更多信息,请参阅 https://developer.apple.com/documentation/packagedescription

  16. 更新 ios/plugin_name.podspec 以指向新路径。

    ios/plugin_name.podspec
    ruby
    s.source_files = 'Classes/**/*.{h,m}'
    s.public_header_files = 'Classes/**/*.h'
    s.module_map = 'Classes/cocoapods_plugin_name.modulemap'
    s.resource_bundles = {'plugin_name_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
    s.source_files = 'plugin_name/Sources/plugin_name/**/*.{h,m}'
    s.public_header_files = 'plugin_name/Sources/plugin_name/include/**/*.h'
    s.module_map = 'plugin_name/Sources/plugin_name/include/cocoapods_plugin_name.modulemap'
    s.resource_bundles = {'plugin_name_privacy' => ['plugin_name/Sources/plugin_name/PrivacyInfo.xcprivacy']}
  17. 更新从bundle加载资源以使用SWIFTPM_MODULE_BUNDLE

    objc
    #if SWIFT_PACKAGE
       NSBundle *bundle = SWIFTPM_MODULE_BUNDLE;
     #else
       NSBundle *bundle = [NSBundle bundleForClass:[self class]];
     #endif
     NSURL *imageURL = [bundle URLForResource:@"image" withExtension:@"jpg"];
  18. 如果您的ios/plugin_name/Sources/plugin_name/include目录仅包含.gitkeep,则需要更新您的.gitignore以包含以下内容

    .gitignore
    文本
    !.gitkeep

    运行flutter pub publish --dry-run以确保发布include目录。

  19. 将插件的更改提交到您的版本控制系统。

  20. 验证插件是否仍与 CocoaPods 兼容。

    1. 关闭Swift Package Manager

      sh
      flutter config --no-enable-swift-package-manager
    2. 导航到插件的示例应用。

      sh
      cd path/to/plugin/example/
    3. 确保插件的示例应用可以构建并运行。

      sh
      flutter run
    4. 导航到插件的顶级目录。

      sh
      cd path/to/plugin/
    5. 运行CocoaPods验证lint

      sh
      pod lib lint ios/plugin_name.podspec  --configuration=Debug --skip-tests --use-modular-headers --use-libraries
      sh
      pod lib lint ios/plugin_name.podspec  --configuration=Debug --skip-tests --use-modular-headers
  21. 验证插件是否与 Swift Package Manager 兼容。

    1. 打开Swift Package Manager

      sh
      flutter config --enable-swift-package-manager
    2. 导航到插件的示例应用。

      sh
      cd path/to/plugin/example/
    3. 确保插件的示例应用可以构建并运行。

      sh
      flutter run
    4. 在 Xcode 中打开插件的示例应用。确保左侧的**项目导航器**中显示了**包依赖项**。

  22. 验证测试是否通过。

如何更新插件示例应用中的单元测试

#

如果您的插件具有本地XCTest,则可能需要更新它们以使其与Swift Package Manager一起使用,如果以下任一情况为真

  • 您正在为测试使用CocoaPod依赖项。
  • 您的插件在其Package.swift文件中显式设置为type: .dynamic

要更新您的单元测试

  1. 在Xcode中打开您的example/ios/Runner.xcworkspace

  2. 如果您正在使用CocoaPod依赖项进行测试,例如OCMock,则需要将其从您的Podfile文件中删除。

    ios/Podfile
    ruby
    target 'RunnerTests' do
      inherit! :search_paths
    
      pod 'OCMock', '3.5'
    end

    然后在终端中,在plugin_name_ios/example/ios目录中运行pod install

  3. 导航到项目的Package Dependencies

    The project's package dependencies
    项目的包依赖项

  4. 单击+按钮,并通过在右上角的搜索栏中搜索来添加任何仅用于测试的依赖项。

    Search for test-only dependencies
    搜索仅用于测试的依赖项

  5. 确保将依赖项添加到RunnerTests目标中。

    Ensure the dependency is added to the  target
    确保将依赖项添加到RunnerTests目标中

  6. 单击Add Package按钮。

  7. 如果您已在其Package.swift文件中显式将插件的库类型设置为.dynamicApple不推荐),则还需要将其作为依赖项添加到RunnerTests目标中。

    1. 确保RunnerTestsBuild Phases具有Link Binary With Libraries构建阶段

      The  Build Phase in the  target
      RunnerTests目标中的Link Binary With Libraries构建阶段

      如果构建阶段尚不存在,请创建一个。单击add,然后单击New Link Binary With Libraries Phase

      Add  Build Phase
      添加Link Binary With Libraries构建阶段

    2. 导航到项目的Package Dependencies

    3. 单击add

    4. 在打开的对话框中,单击Add Local...按钮。

    5. 导航到plugin_name/plugin_name_ios/ios/plugin_name_ios并单击Add Package按钮。

    6. 确保将其添加到RunnerTests目标中,然后单击Add Package按钮。

  8. 确保测试通过Product > Test