Skip to main content
Supported on: Android SDK 1.0.33+
You can A/B test this paywall with no extra code — create an experiment on it in the Console and the SDK serves the assigned variant automatically. See Servable Surface Experiments.
The AppDNA paywall module lets you present server-driven paywalls configured in the AppDNA Console. Paywalls are rendered natively with Jetpack Compose and include built-in purchase handling through the billing module.

Present a Paywall

Present a paywall by its identifier:

Present by Placement

Present a paywall by placement — the SDK uses audience rules configured in the Console to determine which paywall to show:
presentPaywallByPlacement is a top-level method on AppDNA (not on AppDNA.paywall).

Module Access

Access the paywall module directly:

Module Methods

The placement-routed flavor lives on the top-level AppDNA object as AppDNA.presentPaywallByPlacement(activity, placement, context).

PaywallContext

Provide context about where and why the paywall is being shown:
The placement value is included in all paywall analytics events, allowing you to measure conversion by placement in the Console.

AppDNAPaywallDelegate

Implement the delegate interface to receive paywall lifecycle callbacks. The same delegate fires for paywalls launched standalone via AppDNA.paywall.present(...) AND for paywalls launched from inside an onboarding flow (via the present_paywall step outcome) — register once with AppDNA.paywall.setDelegate(...) and handle every paywall presentation through the same handler.

Example Implementation

Restore Purchases

The Restore button is rendered alongside the CTA section (above or below the main subscribe button, controlled by the section’s restore_text and restore_position config in the Console). When the user taps it, the SDK runs the restore flow and fires the lifecycle:
  1. SDK fires onPaywallRestoreStarted(paywallId) immediately.
  2. SDK calls BillingClient.queryPurchasesAsync(SUBS) + queryPurchasesAsync(INAPP) and queries your verification endpoint for previously-purchased products (both subscriptions and one-time products are restorable).
  3. On success: onPaywallRestoreCompleted(paywallId, productIds) fires with the list of restored product identifiers, and the SDK emits a purchase_restored analytics event automatically.
  4. On failure (network error, no previous purchases, Play Billing error): onPaywallRestoreFailed(paywallId, error) fires and the SDK emits a purchase_restore_failed event.
A successful restore that returns at least one product auto-dismisses the paywall by default (shouldDismiss = productIds.isNotEmpty() && !hostRequestedSkip) — the user is now entitled, so there is nothing left to buy. The paywall stays visible only when the restore returns no products, fails, or the host opted out of auto-dismiss via skipNextAutoDismissOnRestore.
For richer transaction details (status, expiry, store), call AppDNA.billing.getEntitlements() after a successful restore — it returns List<Entitlement> with the full verified state. The paywall delegate intentionally returns just product IDs to keep the callback lightweight.

PaywallAction

The PaywallAction enum represents user interactions within the paywall:

DismissReason

The DismissReason enum indicates how the paywall was closed. The wire-format string (sent in paywall_close analytics) is shown in the right column — same value across iOS, Android, Flutter, and React Native.

Paywall Sections

Paywalls configured in the Console support the following content sections:

Plan Display Styles

The plan selection section supports the following display styles, configured per paywall in the Console as a lowercase plan_display_style string:

Card & Badge Customization

Plan cards support per-plan styling configured in the Console:
  • Badge text and color — e.g., “Best Value”, “Most Popular” with custom background
  • Card border and shadow — highlight the selected or recommended plan
  • Save percentage — automatically calculated and displayed on annual plans
  • Trial label — shows “7-day free trial” or custom trial messaging
  • Card background — solid color, gradient, or image per plan card
  • Corner radius — configurable per card

Layout Types

Rich Media in Paywalls

Paywall sections support rich media content configured in the Console:
  • Lottie animations — animated hero images, feature illustrations, or backgrounds
  • Rive animations — interactive state-machine-driven animations
  • Video — inline video in header or feature sections
  • Haptic feedback — triggered on plan selection and CTA taps
  • Particle effects — confetti or celebration effects on purchase completion
  • Per-section styling — background colors, gradients, images, borders, shadows, and corner radius
See the Rich Media guide for full details on supported formats and configuration.

Promo Code Handling

When a paywall includes a Promo input section, implement the promo code delegate method to validate codes against your backend. The completion callback is a simple (Boolean) -> Unittrue accepts the code, false rejects it (the SDK renders the in-built rejection message):

Auto-Tracked Events

The paywall module automatically tracks the following events:
Purchase completion and failure events are tracked by the billing module, not the paywall module. See the Billing documentation for the full list of purchase-related events.

Configuration in Console

Paywalls are created and managed in the AppDNA Console:
  1. Navigate to Monetization > Paywalls.
  2. Create a new paywall or edit an existing one.
  3. Add sections (header, features, plans, CTA, social proof, guarantee).
  4. Link Google Play products to the plan options.
  5. Optionally assign the paywall to an experiment for A/B testing.
  6. Publish the paywall to make it available via the config bundle.
Ensure the product identifiers used in your paywall match the products configured in Google Play Console. Mismatched identifiers will cause purchase failures.

Full Example

The paywall module integrates with the billing module for purchase handling. See the Billing guide for the full purchase API.

Next Steps