### Add Plaid Link iOS SPM Dependency Source: https://github.com/plaid/plaid-link-ios-spm/blob/master/README.md This snippet shows how to add the Plaid Link iOS Swift Package Manager dependency to your Xcode project or Package.swift file. It specifies the repository URL and the version constraint. ```swift import PackageDescription let package = Package( name: "YourProject", dependencies: [ .package(url: "https://github.com/plaid/plaid-link-ios-spm.git", from: "6.0.0") ], targets: [ .target(name: "YourProject", dependencies: ["LinkKit"]) ] ) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.