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

# Installation

> Install the SuggestKit iOS SDK in your app

## Requirements

* **iOS 14.0+** (iOS 15.0+ recommended)
* **Xcode 12.0+** (Xcode 14.0+ recommended)
* **Swift 5.5+**
* **SwiftUI 2.0+**

## Installation Methods

### Swift Package Manager (Recommended)

1. **Open your Xcode project**
2. **File** → **Add Package Dependencies...**
3. **Enter the repository URL:**
   ```
   https://github.com/suggestkit/suggestkit-swift
   ```
4. **Select the latest version** and add to your target

### Manual Installation

Download the latest release from GitHub and drag the framework into your project.

## Verify Installation

Add this to any SwiftUI view to verify the installation:

```swift theme={null}
import SuggestKit

struct TestView: View {
    var body: some View {
        Text("SuggestKit Version: \(SuggestKit.version)")
    }
}
```

## Next Steps

<CardGroup cols={2}>
  <Card title="🚀 Quick Setup" href="/sdks/ios/setup">
    Configure SuggestKit in your app
  </Card>

  <Card title="📱 Basic Usage" href="/sdks/ios/usage">
    Start collecting feedback
  </Card>
</CardGroup>
