Store mechanicsUpdated May 2026

Auto-renewable subscription

An auto-renewable subscription is Apple's core recurring-revenue product: a subscription that renews automatically at each billing period until the user cancels. Google Play's equivalent is the base-plan + offer model.

Definition

What an auto-renewable subscription is

An auto-renewable subscription is the Apple term for a recurring-billing subscription product attached to an iOS app. The subscription renews automatically at the end of each billing period (weekly, monthly, every 2 months, every 3 months, every 6 months, or yearly) unless the user cancels. Apple handles the recurring billing, the renewal notifications, and the receipt validation.

Auto-renewable subscriptions are the dominant monetization model for non-game mobile apps in 2026. The mechanics are very different from consumable or non-consumable IAPs and require dedicated handling in both the store and the app.

How auto-renewable subscriptions work in App Store Connect

The configuration anatomy:

  • A subscription product belongs to a subscription group. Users can be subscribed to at most one product per group at a time, which is how upgrades and downgrades work.
  • Each subscription has a base price (per region) and optionally one or more offers (introductory or promotional)
  • Duration is fixed at one of Apple's preset periods
  • Pricing is per region (storefront) using the price-point ladder
  • Family Sharing can be enabled per subscription, letting up to 5 family members share access without separate purchases

The subscription life cycle: trial (optional) -> active paid period -> auto-renewal at period end -> repeat until cancelled. Cancellations apply at the end of the current paid period, not immediately, unless explicitly refunded.

How auto-renewable subscriptions work on Google Play

Google redesigned its subscription architecture in 2023:

  • A subscription has one or more base plans (different billing periods like monthly vs annual)
  • Each base plan can have one or more offers (free trial, intro pricing)
  • Prices are set per region in free-form decimal format (no price-point ladder)
  • Renewal, grace-period, and billing-retry mechanics are similar to Apple's

Google's terminology splits cleaner than Apple's: base plans for billing cadence, offers for incentives, prices per region. The 2023 redesign also deprecated pricing templates, moving cross-product price management out of the Play Console UI.

What is the difference between an auto-renewable subscription and a non-renewing subscription?

Apple has both. Auto-renewable subscriptions renew automatically with the user's stored payment method. Non-renewing subscriptions are time-limited and expire at the end of the purchased period without billing again. Auto-renewable is overwhelmingly more common; non-renewing exists for specific cases like one-season sports passes.

How is a free trial different from an auto-renewable subscription?

A free trial is one variant of an introductory offer attached to an auto-renewable subscription. The trial is the no-cost initial period; the auto-renewable subscription is the underlying product that renews at the regular price once the trial ends.

How auto-renewable subscriptions interact with localized pricing

Subscriptions are the IAP type where localized pricing matters most. A user re-evaluates the price every billing period (every month for monthly plans, every year for annual). An FX-translated price that feels fine in the US but punishing in India creates renewal friction every cycle, compounding churn over time.

Localized PPP-tuned pricing on the base subscription:

  • Improves trial-to-paid conversion (the post-trial number feels fair)
  • Reduces price-sensitivity churn at each renewal
  • Grows total LTV in lower-income markets despite per-user ARPU drops

This is the entire mechanism behind RevenueCat's State of Subscription Apps findings: localized subscription pricing reliably grows revenue in markets where the FX-only price was the bottleneck.

Examples

Subscription anatomy across stores

ElementApp Store (Apple)Google Play
Product typeAuto-renewable subscriptionSubscription with base plan
Billing cadencePreset periods (weekly to yearly)Free-form via base plans
TrialIntroductory offer (free variant)Offer attached to base plan
PricingPrice point per storefrontFree-form decimal per region
Family sharingToggle per subscription, up to 5 membersEquivalent feature via base-plan config
Receipt validationApp Store Server API or StoreKit 2Real-Time Developer Notifications (RTDN)

The pricing surface is the place where cross-store complexity is highest, which is why localized subscription pricing benefits most from tooling.

Frequently asked

What is an auto-renewable subscription?

An auto-renewable subscription is Apple's core recurring-billing subscription product. It renews automatically at the end of each billing period (weekly to yearly) unless the user cancels. Google Play's equivalent is the base-plan + offer model introduced in 2023.

What is the difference between auto-renewable and non-renewing subscriptions?

Auto-renewable subscriptions renew automatically with the user's stored payment method until cancelled. Non-renewing subscriptions are time-limited and expire without billing again. Auto-renewable is overwhelmingly more common; non-renewing exists for specific time-bound cases like one-season sports passes.

How does a free trial relate to an auto-renewable subscription?

A free trial is one variant of an introductory offer attached to an auto-renewable subscription. The trial is the no-cost initial period; the subscription is the underlying product that auto-renews at the regular price once the trial ends. They are configured together but serve different roles.

Why does localized pricing matter more for subscriptions than for other IAPs?

Users re-evaluate the price at every renewal (monthly or yearly). An FX-only price that feels punishing locally creates friction at each cycle, compounding churn. PPP-tuned localized pricing reduces that friction and reliably grows subscription revenue in lower-income markets per RevenueCat's data.

Further reading

Sources