Implementing Introductory Offers in iOS: Attract New Subscribers

TRUETECH is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.

Development and support of all types of mobile applications:

Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1All 1734 services
Implementing Introductory Offers in iOS: Attract New Subscribers
Medium
~3-5 days
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    858
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    744
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1160
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    1034
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    968
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    562

Implementing Introductory Offers (First-Period Discount) in Mobile Apps

Introductory Offers are a powerful StoreKit tool for attracting new subscribers. Apple App Store Review Guidelines (Section 4.2 and 5.1) regulate their use. Without correct implementation, the user won't see the offer, and conversion drops. With proper setup, an introductory offer can increase subscription conversion by 30–50%. We guarantee that your paywall will show the offer only to those who are truly eligible. In this article, we'll cover how to configure and check eligibility, integrate with a paywall, and avoid common mistakes.

Types of Introductory Offers and Their Configuration

Apple offers three types: freeTrial (free), payAsYouGo (discount on each period), and payUpFront (one-time payment for multiple periods). The choice depends on the business model: freeTrial for product trials, payAsYouGo or payUpFront for long-term customer acquisition.

Type Description Example
freeTrial Free period 7 days free
payAsYouGo Discount on each period for N periods First 3 months at a discount
payUpFront One-time payment for N periods 12 months at a reduced price

An Introductory Offer is created at the subscription level: App Store Connect → Subscriptions → [Subscription] → Introductory Offers. Specify the type, duration, and price. Important: the offer applies only to users who have never been subscribers of this subscription group. Apple checks this on the server. A common mistake is specifying an incorrect duration: for freeTrial, duration cannot be 0 days. Typical freeTrial durations are 3, 7, or 30 days.

How to Read the Offer via StoreKit 2

First, load the product and check for an introductory offer:

import StoreKit

// Load the product
let product = try? await Product.products(for: ["premium_monthly"]).first

// Check for introductory offer
if let intro = product?.subscription?.introductoryOffer {
    switch intro.paymentMode {
    case .freeTrial:
        let days = intro.period.value
        let unit = intro.period.unit
        showFreeTrialBanner(days: days)
    case .payAsYouGo:
        showDiscountedPriceBanner(price: intro.displayPrice, period: intro.period)
    case .payUpFront:
        showUpFrontBanner(price: intro.displayPrice, duration: intro.subscriptionPeriod)
    @unknown default: break
    }
}

Why Eligibility Check Is Critical

Apple checks eligibility on the server side — Apple Developer Documentation. product.subscription?.introductoryOffer exists on every product regardless of eligibility. So an additional check is needed. StoreKit 2 provides access to transaction history:

// Check subscription status via Transaction
for await result in Transaction.currentEntitlements {
    if case .verified(let transaction) = result {
        if transaction.productID == "premium_monthly" {
            userHasBeenSubscriber = true
        }
    }
}

An alternative is server-side verification via the App Store Server API. The server returns isInBillingRetryPeriod and full history. This is more reliable but more complex. Our golden rule: UI decisions on the client, eligibility validation on the server. This approach eliminates abuse and errors.

How to Implement an Introductory Offer: Step-by-Step

  1. Create the offer in App Store Connect. Specify type, duration, and price. Check duration — for freeTrial it cannot be 0.
  2. Load the product and read the offer in code. Use Product.products(for:) and check introductoryOffer.
  3. Check eligibility. Via Transaction.currentEntitlements or server API. For iOS 15+, use eligibleForIntroOffer.
  4. Build the paywall UI. Display a banner with offer terms if the user is eligible.
  5. Test. Use StoreKit Configuration File in Xcode to simulate scenarios without waiting 24 hours.
  6. Document and hand over to support. Specify which offers are active and how they are displayed.

Using RevenueCat

RevenueCat handles eligibility checking. The code becomes simpler:

Purchases.shared.getOfferings { offerings, error in
    if let intro = offerings?.current?.monthly?.product.introductoryDiscount {
        Purchases.shared.checkTrialOrIntroductoryPriceEligibility(
            productIdentifiers: ["premium_monthly"]
        ) { eligibilityDict in
            let eligible = eligibilityDict["premium_monthly"]?.status == .eligible
        }
    }
}

According to our data, switching to RevenueCat cuts subscription logic development time by 2–3x and reduces errors by 70%. RevenueCat also automatically handles purchase restoration and notifications.

Displaying on the Paywall UI

A typical paywall conditionally shows the offer:

struct PaywallView: View {
    let product: Product
    @State private var isEligibleForIntro = false

    var body: some View {
        VStack {
            if let intro = product.subscription?.introductoryOffer,
               isEligibleForIntro {
                IntroOfferBanner(offer: intro)
                    .transition(.opacity)
            }
            SubscriptionButton(product: product)
        }
        .task {
            await checkEligibility()
        }
    }

    func checkEligibility() async {
        isEligibleForIntro = await checkIntroEligibility()
    }
}

Comparison of Eligibility Check Methods

Method Complexity Reliability Recommendation
StoreKit 2 (Transaction.currentEntitlements) Medium High (iOS only) For simple apps
App Store Server API High Maximum For complex projects
RevenueCat Low High Universal solution

Common Mistakes in Setting Up Introductory Offers

  • Incorrect freeTrial duration (e.g., 0 days) — the offer won't be applied.
  • Ignoring eligibility — the offer is shown to everyone, causing purchase errors.
  • Lack of testing via StoreKit Configuration File — requires waiting 24 hours for re-test.
  • Ignoring iOS version: Transaction.currentEntitlements is only available from iOS 15. For older versions, use a server API or a library like RevenueCat.
  • Forgetting to update the paywall when subscription status changes (e.g., after restoration).

What's Included in the Work

  • Reading and displaying the introductory offer from the Product object (StoreKit 2)
  • Eligibility check via Transaction.currentEntitlements or server validation
  • Paywall UI component with conditional offer display
  • Testing using StoreKit Configuration File in Xcode (sandbox without 24h wait)
  • Analytics logging: offer display, conversion, offer type
  • Documentation and knowledge transfer to your team

Timelines and Cost

From 3 to 5 days depending on the paywall UI complexity and availability of server-side validation. Cost is calculated individually after requirements analysis. Contact us for an accurate estimate. Get a consultation on implementing subscriptions in your project.

We have over 5 years of experience in developing subscription solutions for iOS and Android. Our certified developers ensure compliance with App Store Review Guidelines.

Why can't an introductory offer be offered again?Apple checks eligibility on the server side: if the user has already been a subscriber in this subscription group, the offer will not be applied. This protects against abuse and meets App Store requirements.

Mobile App Monetization: IAP, Subscriptions, and Ad Mediation

An app with poorly implemented purchases loses money not because users don't want to pay, but because a StoreKit transaction hangs, Receipt Validation fails with an error, or restore purchases doesn't work — and the user writes to support or leaves a 1-star review. Our experience (over 7 years in mobile development) shows that proper monetization increases LTV by 30–60% within the first three months after implementation. Get a consultation on monetizing your app — we'll analyze the current model and find growth points.

Why StoreKit 2 is the Best Choice for IAP?

StoreKit 2 (iOS 15+) is a modern API with async/await and device-side verified transactions without a server. Transaction.currentEntitlements returns all active purchases. Key change compared to StoreKit 1: JWS signature verification on device via VerificationResult<Transaction> — no need to send receipt to server for basic validation.

But server-side validation is still needed for consumable purchases and fraud prevention. App Store Server API replaces the old /verifyReceipt endpoint. Webhooks via App Store Server Notifications v2 provide real-time events: SUBSCRIBED, DID_RENEW, EXPIRED, REFUND — without polling.

A typical mistake: not handling paymentQueue(_:updatedTransactions:) in the background for unfinished transactions. User bought a consumable, app crashed before finishTransaction — purchase remains in queue, restores on next launch and requires reprocessing on server. Without server idempotency — double crediting.

How Not to Lose Revenue on Subscriptions?

The subscription model requires tracking states: trial → active → grace period → expired → refunded. RevenueCat is the de facto standard for managing subscriptions in production. It abstracts StoreKit and Google Play Billing, providing a unified API, webhooks, cohort analytics, and A/B testing of paywalls.

Alternatives to RevenueCat include custom implementations with Adapty or Qonversion. Fully custom only if data must not leave the infrastructure or there is non-standard logic. We guarantee that webhook setup and subscription lifecycle event handling is done without losses — verified on projects with over 500k DAU.

Google Play Billing Library 6+ requires handling PurchasesUpdatedListener and explicitly calling acknowledgePurchase() or consumePurchase() within 3 days — otherwise Google automatically cancels the purchase and refunds. The average cost of such an error is a significant loss per user per month (based on our project data).

Ad Mediation: Boosting CPM via Bidding

Showing ads from a single source means losing revenue. Mediation (waterfall or bidding) requests ads from multiple networks and displays the best bid. Google AdMob is the foundation for banner, interstitial, rewarded ads. Mediation via AdMob Mediation or MAX (AppLovin) is the second de facto standard. MAX uses In-App Bidding — a real-time auction without waterfall. In practice, MAX yields significantly higher CPM than classic waterfall (depending on geo and audience). For example, for rewarded video in the US, the improvement can be substantial. With 100,000 rewarded video impressions per day, switching from waterfall to In-App Bidding can generate additional daily revenue.

ironSource (Unity Ads) has a strong position in the gaming segment, especially rewarded video. Mintegral covers the Asian audience well.

Setting up mediation requires ATT (App Tracking Transparency) on iOS 14+. Without requestTrackingAuthorization, ad CPM drops by 3-5 times for non-consenting users. SKAdNetwork and Privacy Manifest (iOS 17) are mandatory requirements; without them, review fails.

Network Ad Type Feature
AdMob banner, interstitial, rewarded Wide network, easy start
MAX (AppLovin) rewarded, interstitial In-App Bidding, high fill rate
ironSource rewarded video Best for games
Mintegral rewarded, native Asia, programmatic

How We Implement Monetization: Step-by-Step Process

  1. Current model audit — analysis of funnel, paywall, price tiers, and identification of bottlenecks.
  2. Model design — choose type (subscription, consumable, non-consumable) and optimize price points.
  3. IAP integration — set up StoreKit 2 / Google Billing 6, receipt validation, webhooks.
  4. Ad mediation — connect 3-6 networks, configure waterfall or In-App Bidding, test fill rate.
  5. Analytics and cohorts — integrate RevenueCat, Amplitude, or Firebase for LTV tracking.
  6. A/B testing of paywall — use Remote Config for experiments without a release.
  7. Launch and monitoring — 2 weeks of free support after launch, bug fixes by 24-hour SLA.

How to Design a Freemium Model and Paywall?

Freemium works when the boundary between free and paid is properly drawn. Too strict a paywall at the start — users delete. Too generous a free tier — no incentive to pay.

A technically sound pattern: server-side feature flags (Remote Config in Firebase or LaunchDarkly) control access to features. This allows A/B testing of paywall without a release, changing trial conditions, and running promotions.

Implementation at the code level: EntitlementManager — a single point for checking access to features, aware of subscription status, flags, and promos. No scattered isPremium checks throughout the code. Experience shows this approach reduces paywall-related bugs by 80% (confirmed on 30+ projects).

Checklist of Typical Monetization Mistakes
  • Missing handling of unfinished transactions — revenue loss of 5-10%.
  • No server-side idempotency for consumable processing — double crediting.
  • Forgot to call acknowledgePurchase() on Android — purchase cancelled after 3 days.
  • Not handling REFUND and DID_RENEW events — incorrect subscription status.
  • Paywall without A/B testing — leaving 20-40% of monetization potential.
  • Ads from a single source (e.g., AdMob without mediation) — CPM 15-30% lower.

Scope of Monetization Work

  • Current model audit — analysis of funnel, paywall, price tiers.
  • IAP integration — StoreKit 2 / Google Billing 6, receipt validation, webhooks.
  • Ad mediation — configure MAX / AdMob, connect 3-6 networks, test fill rate.
  • Analytics setup — RevenueCat, Amplitude / Firebase, cohort analysis.
  • Documentation — description of entitlements, restoration procedure, review checklist.
  • Team training — analysis of typical mistakes, support recommendations.
  • Guarantee — 2 weeks free support after launch, bug fixes by 24-hour SLA.

Estimated Timelines

Stage Duration
Basic IAP (one store) 1–2 weeks
Subscription system + RevenueCat + paywall 3–5 weeks
Ad mediation (MAX + 3 networks) 1–2 weeks
Full cycle (IAP + ads + analytics) 4–8 weeks

Cost is calculated individually. We have been working in this field for over 8 years and have implemented monetization in over 40 projects — many of which passed App Store Review without a single rejection. Contact us for an audit or order a consultation — we'll tell you what growth points exist in your app.