A lightweight, production-ready Swift package for validating StoreKit 2 in-app purchases and subscriptions. Built on top of iaptic's enterprise-grade validation service.
- Robust Receipt Validation: Server-side validation with real-time fraud detection and automated receipt refresh
- Zero Maintenance: Focus on your app while iaptic handles subscription states, edge cases, and server infrastructure
- Production Ready: Powers millions of transactions with 99.99% uptime
- Cross-Platform Support: One solution for iOS, macOS, watchOS, and tvOS
- Real-time Insights: Monitor transactions, subscription health, and revenue in real-time
- iOS 15.0+, macOS 12.0+, watchOS 8.0+, tvOS 15.0+
- Swift 5.5+
- StoreKit 2
- In Xcode, select File > Add Packages...
- Enter the repository URL:
https://github.com/iaptic/iaptic-storekit2.git
- Select Up to Next Major Version with 1.0.0 as the minimum version
- Click Add Package
- Select the target where you want to use the package
If you're developing a Swift package that depends on Iaptic, add it to your Package.swift
file:
dependencies: [
.package(url: "https://github.com/iaptic/iaptic-storekit2.git", from: "1.0.0")
]
Then add the dependency to your target:
.target(
name: "YourTarget",
dependencies: [
.product(name: "Iaptic", package: "iaptic-storekit2")
]
)
- Initialize the validator:
import StoreKit
import Iaptic
let iaptic = Iaptic(
appName: "your-app-name",
publicKey: "your-public-key"
)
- Validate purchases:
// During purchase
let result = try await product.purchase()
switch result {
case .success(let verificationResult):
let validationResult = await iaptic.validate(
productId: product.id,
purchaseResult: result
)
if validationResult.isValid {
// Grant entitlements
}
// During app launch
for await verificationResult in Transaction.updates {
if case .verified(let transaction) = verificationResult {
let validationResult = await iaptic.validate(
productId: transaction.productID,
verificationResult: verificationResult
)
if validationResult.isValid {
// Update entitlements
}
}
}
- Real-time fraud detection
- Server-side validation with multiple security layers
- Automated receipt refresh and validation
- Intelligent caching system
- Automatic retry with exponential backoff
- Thread-safe implementation
- Real-time subscription state tracking
- Automatic renewal handling
- Built-in grace period support
if let purchases = validationResult.purchases {
for purchase in purchases {
// Access standardized purchase data
print("Product ID: \(purchase.id)")
print("Expires: \(purchase.expiryDate ?? "Never")")
print("Is Trial: \(purchase.isTrialPeriod ?? false)")
}
}
Check out our demo project for a complete implementation example.
For detailed API documentation and implementation guides, visit iaptic.com/documentation.
- Email: [email protected]
- Documentation: iaptic.com/docs
MIT License. See LICENSE file for details.