Offline SDK mode

Qonversion SDKs work when there is no internet connection on the device, or Qonversion API is inaccessible for a short time. Please take a look at the details of this mode below.

Products and Offerings

The information about your Products and Offerings is crucial to show a paywall and create a purchase. Qonversion SDKs have a built-in cache that preprocesses this data and makes it available to help you offer top-notch UX for your customers.

Entitlements

Entitlements are the central part of subscription-based access management. Once your app user purchases using our SDK, the SDK returns the currently available subscription status or the cached status during a lack of internet connection or issues with Qonversion API. The cached subscription state is available for one month by default.

You can change the duration according to your needs while configuring Qonversion as follows:

let config = Configuration(projectKey: "projectKey", launchMode: .subscriptionManagement)
config.setEntitlementsCacheLifetime(.year)
Qonversion.initWithConfig(config)
QONConfiguration *configuration = [[QONConfiguration alloc] initWithProjectKey:@"projectKey" launchMode:QONLaunchModeSubscriptionManagement];
[configuration setEntitlementsCacheLifetime:QONEntitlementsCacheLifetimeYear];
[Qonversion initWithConfig:configuration];
final QonversionConfig qonversionConfig = new QonversionConfig.Builder(
        this,
        "projectKey",
        QLaunchMode.SubscriptionManagement
)
        .setEntitlementsCacheLifetime(QEntitlementsCacheLifetime.Year)
        .build();
Qonversion.initialize(qonversionConfig);
val qonversionConfig = QonversionConfig.Builder(
    this,
    "projectKey",
    QLaunchMode.SubscriptionManagement
)
    .setEntitlementsCacheLifetime(QEntitlementsCacheLifetime.Year)
    .build()
Qonversion.initialize(qonversionConfig)
final config = new QonversionConfigBuilder(
  	'projectKey',
  	QLaunchMode.subscriptionManagement
)
  	.setEntitlementsCacheLifetime(QEntitlementsCacheLifetime.year)
  	.build();
Qonversion.initialize(config);
const config = new QonversionConfigBuilder(
  'projectKey',
  LaunchMode.SUBSCRIPTION_MANAGEMENT
)
  .setEntitlementsCacheLifetime(EntitlementsCacheLifetime.YEAR)
  .build();
Qonversion.initialize(config);
QonversionConfig config = new QonversionConfigBuilder(
        "projectKey",
        LaunchMode.SubscriptionManagement
    )
        .SetEntitlementsCacheLifetime(EntitlementsCacheLifetime.Year)
        .Build();
Qonversion.Initialize(config);
const config = new Qonversion.ConfigBuilder(
  'projectKey',
  Qonversion.LaunchMode.SUBSCRIPTION_MANAGEMENT
)
  .setEntitlementsCacheLifetime(Qonversion.EntitlementsCacheLifetime.YEAR)
  .build();
Qonversion.initialize(config);

Let's have a look at the following hypothetical example:

  1. A user purchases a weekly subscription.
  2. He sets off on a long journey without internet access. But he wants to continue using your premium features offline.
  3. Qonversion SDK will be returning information that this particular user is eligible for premium access for one month if the user does not connect to the internet during this period.
  4. Eventually, when he opens the app with an internet connection available, Qonversion will update subscription statuses and show the current state accordingly.

Purchases

Purchases are the third critical part of subscription management. We guarantee data completeness in this case as well.
If, for some reason, our SDK cannot complete the purchase through Qonversion API in real-time, the SDK stores the data on the device and resends it at the next app launch. Your users will have a seamless experience: even if we cannot get a response from our servers (network or API outages), we will locally determine entitlements (based on previously loaded information) and provide correct user access. Then, we will also update the eligibility with the first successful request to our API.

SDK versions to use this feature

SDKVersion
IOS2.20.0+
Android3.3.0+
Unity3.5.0+
Flutter4.4.0+
React Native3.4.0+
Cordova2.0.0+