> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ton.org/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.ton.org/feedback

```json
{
  "path": "/ecosystem/walletkit/ios/installation",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# How to install the TON Connect's WalletKit on the iOS platform

## Requirements

* iOS 13.0+
* Swift 5.9+

## Adding WalletKit to XCode project

1. Open the project in XCode
2. Go to `File` → `Add Package Dependencies`
3. Search for WalletKit package by URL: [`https://github.com/ton-connect/kit-ios.git`](https://github.com/ton-connect/kit-ios.git)
4. Tap the <kbd>Add Package</kbd> button

## Adding WalletKit to Swift package

1. Open the package's `Package.swift` manifest file

2. Add a dependency:

   ```swift theme={"theme":{"light":"github-light-default","dark":"dark-plus"},"languages":{"custom":["/resources/grammars/tolk.tmLanguage.json","/resources/grammars/tlb.tmLanguage.json","/resources/grammars/fift.tmLanguage.json","/resources/grammars/tasm.tmLanguage.json","/resources/grammars/func.tmLanguage.json"]}}
   dependencies: [
       .package(url: "https://github.com/ton-connect/kit-ios.git", .upToNextMajor(from: "0.0.2"))
   ]
   ```

3. Add a product to the target:

   ```swift theme={"theme":{"light":"github-light-default","dark":"dark-plus"},"languages":{"custom":["/resources/grammars/tolk.tmLanguage.json","/resources/grammars/tlb.tmLanguage.json","/resources/grammars/fift.tmLanguage.json","/resources/grammars/tasm.tmLanguage.json","/resources/grammars/func.tmLanguage.json"]}}
   .product(name: "TONWalletKit", package: "TONWalletKit")
   ```

Alternatively, explore the complete demo wallet with WalletKit integration:

<Card title="Demo wallet, GitHub" icon="github" horizontal href="https://github.com/ton-connect/kit-ios/tree/main/Demo" />
