Skip to content

iaptic/iaptic-storekit2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Iaptic for StoreKit 2

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.

Why Iaptic?

  • 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

Requirements

  • iOS 15.0+, macOS 12.0+, watchOS 8.0+, tvOS 15.0+
  • Swift 5.5+
  • StoreKit 2

Installation

Swift Package Manager

Using Xcode

  1. In Xcode, select File > Add Packages...
  2. Enter the repository URL: https://github.com/iaptic/iaptic-storekit2.git
  3. Select Up to Next Major Version with 1.0.0 as the minimum version
  4. Click Add Package
  5. Select the target where you want to use the package

Using Package.swift

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")
    ]
)

Quick Start

  1. Initialize the validator:
import StoreKit
import Iaptic

let iaptic = Iaptic(
    appName: "your-app-name",
    publicKey: "your-public-key"
)
  1. 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
        }
    }
}

Features

Enterprise-Grade Security

  • Real-time fraud detection
  • Server-side validation with multiple security layers
  • Automated receipt refresh and validation

Smart Performance

  • Intelligent caching system
  • Automatic retry with exponential backoff
  • Thread-safe implementation

Subscription Management

  • Real-time subscription state tracking
  • Automatic renewal handling
  • Built-in grace period support

Detailed Purchase Information

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)")
    }
}

Example Project

Check out our demo project for a complete implementation example.

Documentation

For detailed API documentation and implementation guides, visit iaptic.com/documentation.

Support

License

MIT License. See LICENSE file for details.

About

StoreKit 2 integration with iaptic

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages