iOS SDK
Installation
How to install the ProxyKit iOS SDK
iOS SDK Installation
Requirements
- iOS 15.0+ or macOS 12.0+
- Xcode 15.0+
- Swift 5.9+
Swift Package Manager
Using Xcode
- Open your project in Xcode
- Go to File → Add Package Dependencies
- Enter the package URL:
https://github.com/proxy-kit/ios-sdk
- Click Add Package
- Select your app target and click Add Package
Using Package.swift
dependencies: [
.package(
url: "https://github.com/proxy-kit/ios-sdk",
from: "1.0.0"
)
]
Verify Installation
// Choose your import style
import SecureProxy // For simple context-aware chat
import AIProxy // For full API control
// If this compiles, you're ready to go
Required Capabilities
For production apps, enable App Attest capability in your app settings.
Next Steps
- Configure the SDK with your App ID
- Start using the SDK