Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/adaptyteam/AdaptySDK-iOS

iOS SDK for growing mobile in-app purchases
https://github.com/adaptyteam/AdaptySDK-iOS

apple entitlements iap iap-verification in-app-purchase in-app-receipt ios ios-subscription macos objective-c purchases receipt-validation sdk storekit subscription subscriptions swift swift5 swiftui trials

Last synced: about 2 months ago
JSON representation

iOS SDK for growing mobile in-app purchases

Lists

README

        








Easy In-App Purchases Integration to

Make Your iOS App Profitable







![Adapty: CRM for mobile apps with subscriptions](https://adapty-portal-media-production.s3.amazonaws.com/github/adapty-schema.png)

Adapty SDK is an open-source framework that makes implementing in-app subscriptions for iOS fast and easy. It’s 100% open-source, native, and lightweight.

## Why Adapty?

- [On-the-fly paywalls price testing](https://docs.adapty.io/v2.0.0/docs/ab-test?utm_source=github&utm_medium=referral&utm_campaign=AdaptySDK-iOS). Test different prices, duration, offers, messages, and designs simultaneously, all without new app releases.
- [Full customer's payment history](https://docs.adapty.io/v2.0.0/docs/profiles-crm?utm_source=github&utm_medium=referral&utm_campaign=AdaptySDK-iOS). Explore the user's payment events from the trial start to subscription cancellation or billing issues.
- [In-app purchase data integration](https://docs.adapty.io/v2.0.0/docs/events?utm_source=github&utm_medium=referral&utm_campaign=AdaptySDK-iOS). Send subscription events to 3rd-party analytics, attribution, and ad services with no coding, even if the user uninstalls the app.
- [No server code implementation](https://docs.adapty.io/docs/ios-configuring?utm_source=github&utm_medium=referral&utm_campaign=AdaptySDK-iOS). Integrate in-app purchases with server-side receipt validation in minutes. Apple Promotional Offers supported out-of-the-box.
- [Advanced analytics](https://docs.adapty.io/v2.0.0/docs/analytics-charts?utm_source=github&utm_medium=referral&utm_campaign=AdaptySDK-iOS). Analyze your app real-time metrics with advanced filters, such as Ad network, Ad campaign, country, A/B test, etc.


Talk to Us to Learn More

## Integrate IAPs Within a Few Hours Without Server Coding

**Adapty handles everything, from free trials to refunds, in a simple, developer-friendly SDK.**

- Free trials, upgrades, downgrades, crossgrades, family sharing, renewals, promo offers, intro offers, promo codes, and more – Adapty SDK does everything with a single line of code.
- Easy subscription management.
- One-time purchases and lifetime subscriptions supported.
- Sync subscribers' states across iOS, Android, and Web.

```swift
// Your app’s code
import Adapty

Adapty.activate("YOUR_APP_KEY")

// Make a purchase, Adapty handles the rest
Adapty.makePurchase(product: product) { [weak self] result in
switch result {
case let .success(profile):
// check access level
case let .failure(error):
// handle error
}
}
```

## Price Testing for In-app Purchases on iOS Without App Releases

- Optimize in-app subscriptions with the paywall A/B testing. Conversions, trials, revenue, cancellations, and more — everything is calculated for you: each paywall and each A/B test.
- Change images, colors, layouts, and literally anything with a custom JSON. Configure different prices, trial periods, promo offers, and more in Adapty without app releases.

## Paywall A/B Testing on iOS

![Adapty: In-app subscriptions with paywall A/B testing](https://adapty-portal-media-production.s3.amazonaws.com/github/ab-test-new.png)

- Conversions, trials, revenue, cancellations, and more everything is calculated for you: each paywall and each A/B test.
- Change images, colors, layouts and literally anything with a custom JSON.
- Price testing is seamlessly integrated for any platform.

## Real-time Analytics for Your iOS App

![Adapty: How Adapty works](https://adapty-portal-media-production.s3.amazonaws.com/github/analyticss.gif)

- Manage the subscription's state without managing transactions.
- 99.5% accuracy with App Store Connect.
- View and analyze data by attributes, such as status, channels, campaigns, and more.
- Filter, group, and measure metrics by attribution, platform, custom users' segments, and more in a few clicks.

## Examples of Adapty-Demo apps

This is a demo applications for Adapty. Before running the app, you will need to configure the project.

### 1. [UIKit](https://github.com/adaptyteam/AdaptySDK-iOS/tree/master/Examples/UIKit)
### 2. [SwiftUI](https://github.com/adaptyteam/AdaptySDK-iOS/tree/master/Examples/SwiftUI)

![Adapty: An example of the paywall is changed on the fly](https://adapty-portal-media-production.s3.amazonaws.com/github/swift-ui-example.jpg)

## Mobile App Monetization's Largest Community

Ask questions, participate in discussions about Adapty-related topics, become a part of our community for iOS app developers and marketers. Learn how to monetize your app, ask questions, post jobs, read industry news and analytics. Ad free.

## Getting Started

### 1. [Installing the iOS SDK via CocoaPods or Swift Package Manager](https://docs.adapty.io/v2.0.0/docs/ios-installation)
### 2. [Importing, configuring, and setting up the logging](https://docs.adapty.io/v2.0.0/docs/ios-configuring)

In your `AppDelegate` class:
```swift
import Adapty
```

And add the following to `application(_:didFinishLaunchingWithOptions:):`
```swift
Adapty.activate("PUBLIC_SDK_KEY", customerUserId: "YOUR_USER_ID")
```

### 3. [Fetching and displaying products for paywalls in your app](https://docs.adapty.io/v2.0.0/docs/ios-displaying-products)

The Adapty iOS SDK allows you to remotely configure the products that will be displayed in your app. This way you don't have to hardcode the products and can dynamically change offers or run A/B tests without having to release a new version of the app.

To fetch the paywall, you have to call `.getPaywall()` method:
```swift
Adapty.getPaywall("YOUR_PAYWALL_ID") { result in
switch result {
case let .success(paywall):
// the requested paywall
case let .failure(error):
// handle the error
}
}
```

Once you have the paywall, you can query the product array that corresponds to it:

```swift
Adapty.getPaywallProducts(paywall: paywall) { result in
switch result {
case let .success(products):
// the requested products array
case let .failure(error):
// handle the error
}
}
```

### 4. [Making and restoring mobile purchases](https://docs.adapty.io/v2.0.0/docs/ios-making-purchases)

To make the purchase, you have to call `.makePurchase()` method:
```swift
let product = products.first

Adapty.makePurchase(product: product) { result in
switch result {
case let .success(profile):
// successful purchase
case let .failure(error):
// handle the error
}
}
```

### 5. [Getting info about the user subscription status and granting access to the premium features of the app](https://docs.adapty.io/v2.0.0/docs/ios-subscription-status)

With the Adapty iOS App SDK you don't have to hardcode product IDs to check the subscription status. You just have to verify that the user has an active access level. To do this, you have to call `.getProfile()` method:
```swift
Adapty.getProfile { result in
if let profile = try? result.get(),
profile.accessLevels["premium"]?.isActive ?? false {
// grant access to premium features
}
}
```

### 6. [Identifying the users of your app](https://docs.adapty.io/v2.0.0/docs/ios-identifying-users)

Adapty creates an internal profile ID for every user. But if you have your own authentification system, you should set your own Customer User ID. You can find the users by the Customer User ID in Profiles. It can be used in the server-side API and then sent to all integrations.

### 7. [Attribution Integration](https://docs.adapty.io/v2.0.0/docs/attribution-integration)

Adapty SDK supports AppsFlyer, Adjust, Branch, Facebook Ads, and Apple Search Ads.

### 8. [Setting User Attributes](https://docs.adapty.io/v2.0.0/docs/setting-user-attributes)

You can set optional attributes such as email, phone number, etc, to the user of your app. You can then use attributes to create user segments or just view them in CRM.

### 9. [Analytics Integration](https://docs.adapty.io/v2.0.0/docs/analytics-integration)

Adapty sends all subscription events to analytical services, such as Amplitude, Mixpanel, and AppMetrica.

### 10. [Error Handling](https://docs.adapty.io/v2.0.0/docs/ios-sdk-error-handling)

### 11. [SDK Models](https://docs.adapty.io/v2.0.0/docs/sdk-models)

## Contributing

- Feel free to open an issue, we check all of them or drop us an email at [[email protected]](mailto:[email protected]) and tell us everything you want.
- Want to suggest a feature? Just contact us or open an issue in the repo.

## Like Adapty SDK?

So do we! Feel free to star the repo ⭐️⭐️⭐️ and make our developers happy!

## License

Adapty is available under the MIT license. [Click here](https://github.com/adaptyteam/AdaptySDK-iOS/blob/master/LICENSE) for details.