Reference version

This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.

Expo AgeRange

A library that provides access to age range information using Play Age Signals API on Android and Declared Age Range framework on iOS.

Android
iOS
Included in Expo Go

expo-age-range provides access to user age range information. It uses Google's Play Age Signals API on Android and Apple's Declared Age Range framework on iOS.

This library allows you to request age range information from your app users to help you comply with age-appropriate content regulations (such as in Texas, USA) and provide age-appropriate experiences in your app.

Limitations

We recommend testing the functionality on a real device, as simulator runtimes may not work as expected.

Installation

Terminal
npx expo install expo-age-range

If you are installing this in an existing React Native app, make sure to install expo in your project.

Configuration in app config

Set up the iOS project

To use the age range API on iOS, you need to build your project with Xcode 26.0 or later but we recommend you build with the latest Xcode to have access to the latest APIs.

The com.apple.developer.declared-age-range entitlement is required. Add it to your app config file:

app.json
{ "expo": { "ios": { "entitlements": { "com.apple.developer.declared-age-range": true } } } }
Are you using this library in an existing React Native app?

For existing React Native projects, add the entitlement to your project's ios/[app]/[app].entitlements file:

<key>com.apple.developer.declared-age-range</key> <true/>

Usage

On Android, Play Age Signals only reports an age range while the user consents to sharing it. Call requestAgeSignalsAccessAsync first and continue only when it resolves with 'SHARED'. On iOS the consent prompt is part of requestAgeRangeAsync, so the call resolves with null and the example below continues.

Age Range usage
import * as AgeRange from 'expo-age-range'; import { useState } from 'react'; import { StyleSheet, Text, View, Button } from 'react-native'; export default function App() { const [result, setResult] = useState<AgeRange.AgeRangeResponse | { error: string } | null>(null); const requestAgeRange = async () => { try { // On Android, ask the user to share their age signals first. Resolves with null on iOS. const status = await AgeRange.requestAgeSignalsAccessAsync(); if (status !== null && status !== 'SHARED') { setResult({ error: `Age signals are not shared: ${status}` }); return; } const ageRange = await AgeRange.requestAgeRangeAsync({ threshold1: 10, threshold2: 13, threshold3: 18, }); setResult(ageRange); } catch (error) { setResult({ error: error.message }); } }; return ( <View style={styles.container}> <Button title="Request age range" onPress={requestAgeRange} /> {result && ( <Text style={styles.result}> {'error' in result ? `Error: ${result.error}` : `Lower age bound: ${result.lowerBound}`} </Text> )} </View> ); } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', padding: 20, }, result: { marginTop: 20, fontSize: 16, }, });

Additional resources

API

import * as AgeRange from 'expo-age-range';

Methods

AgeRange.getRequiredRegulatoryFeaturesAsync()

iOS 26.4+

Returns the set of regulatory features that the OS reports as required for the current user.

Use this to discover which age-assurance obligations apply.

Resolves with null on iOS earlier than 26.4 and on Android and web — treat null as "unknown" rather than "no features required".

AgeRange.isEligibleForAgeFeaturesAsync()

iOS 26.2+

Asks the OS whether age-assurance regulation applies to the current user. Apple uses this to signal that the account region is covered by a law such as Utah's or Louisiana's age-assurance requirements, so apps can avoid gating users in jurisdictions where the rules do not apply.

  • Resolves with true only when Apple confirms regulation applies.
  • Resolves with false when the OS confirms regulation does not apply.
  • Resolves with null on iOS earlier than 26.2, and on Android and web. Treat null as "unknown" rather than a definitive false.
  • Rejects when the request fails — see AgeRangeService.Error for more information. Treat rejection as "unknown" and fall through to requestAgeRangeAsync or your own gating logic.

Recommended pattern: call this first and only prompt the user for their age range when the result is not false. When it is false, the user is outside a regulated jurisdiction and you can skip the age gate entirely.

Returns:
Promise<boolean | null>

Example

try { const eligible = await isEligibleForAgeFeaturesAsync(); if (eligible === false) { // Regulation does not apply — no age gate needed. return; } } catch { // Treat errors as "unknown" and fall through to the prompt below or your own gating logic. } const ageRange = await requestAgeRangeAsync({ threshold1: 18 });

AgeRange.requestAgeRangeAsync(options)

Android
iOS 26.0+
ParameterType
optionsAgeRangeRequest

Prompts the user to share their age range with the app. Responses may be cached by the OS for future requests.

A promise that resolves with user's age range response, or rejects with an error. The user needs to be signed in on the device to get a valid response. When not supported (earlier than iOS 26 and web), the call returns lowerBound: 18, which is equivalent to the response of an adult user.

On Android, call requestAgeSignalsAccessAsync first and only call this function when it resolves with 'SHARED'. Play Age Signals reports every field as null otherwise.

AgeRange.requestAgeSignalsAccessAsync()

Android

Asks the user to consent to sharing their age signals, showing the Play Age Signals in-app age sharing consent screen. Play Age Signals requires this before requestAgeRangeAsync: age signals are only reported while the status is 'SHARED'.

  • Resolves with 'SHARED' when the user agrees to share their age signals. Only then does requestAgeRangeAsync report an age range.
  • Resolves with 'NOT_SHARED' when the user does not agree. requestAgeRangeAsync reports every field as null until the user consents.
  • Resolves with 'VERIFICATION_REQUIRED' when the user's age is unknown and they are in a region where age verification is mandatory. Ask the user to visit the Play Store to resolve their status.
  • Resolves with null when Play Age Signals reports no status, and on iOS and web. On iOS the consent prompt is part of requestAgeRangeAsync itself, so there is nothing separate to call.
  • Rejects when the request fails.
Returns:
Promise<AgeSignalsStatus | null>

AgeRange.showSignificantUpdateAcknowledgmentAsync(updateDescription)

iOS 26.4+
ParameterTypeDescription
updateDescriptionstring

A description of the significant update to show to the user.


Displays a system-provided interface for people to acknowledge a significant app update.

Only on iOS 26.4+, this presents an update acknowledgement dialog and resolves once the user confirms it, or rejects with an error. On unsupported platforms this resolves immediately without showing any UI.

Call getRequiredRegulatoryFeaturesAsync first to determine whether the user actually needs to acknowledge a significant change — only invoke this function when the returned features include 'significantAppChangeRequiresAdultNotification'. Doing so avoids prompting users who are not subject to the regulation.

Returns:
Promise<void>

Types

AgeRangeRegulatoryFeature

iOS 26.4+

Literal type: string

A regulatory feature that your app may need to support for the current user.

Mirrors AgeRangeService.RegulatoryFeature.

Acceptable values are: 'declaredAgeRangeRequired' | 'significantAppChangeRequiresAdultNotification' | 'significantAppChangeRequiresParentalConsent'

AgeRangeRequest

iOS

Options for requesting age range information from the user.

PropertyTypeDescription
threshold1number

The required minimum age for your app.

threshold2(optional)number

An optional additional minimum age for your app.

threshold3(optional)number

An optional additional minimum age for your app.

AgeRangeResponse

Android
iOS

Response containing the user's age range information.

Contains age boundaries and platform-specific metadata.

PropertyTypeDescription
activeParentalControls(optional)string[]
Only for:
iOS

List of parental controls enabled and shared as a part of age range declaration.

ageRangeDeclaration(optional)'selfDeclared' | 'guardianDeclared' | 'confirmed' | null
Only for:
iOS

Indicates how the age range was declared:

  • 'selfDeclared' — declared by the user themselves.
  • 'guardianDeclared' — declared by someone else (parent, guardian, or Family Organizer in a Family Sharing group).
  • 'confirmed' — confirmed by the system (for example, verified against a government ID or payment method). Only reported on iOS 26.2+.

See ageRangeSource for the Android equivalent.

ageRangeSource(optional)'TIER_A' | 'TIER_B' | 'TIER_C' | 'TIER_D' | null
Only for:
Android

The methodology Play Age Signals used to determine the user's age range:

  • 'TIER_A' — the user self-declared their age.
  • 'TIER_B' — a parent or guardian manages the user's age.
  • 'TIER_C' — the age was assessed using a credit card, email address, selfie assessment, government ID, or tax ID.
  • 'TIER_D' — the age was checked using a combination of government ID and selfie assessment, or a digital ID.

null when the sharing status reported by requestAgeSignalsAccessAsync is 'NOT_SHARED' or 'VERIFICATION_REQUIRED'.

installId(optional)string | null
Only for:
Android

An ID assigned to supervised user installs by Google Play, used to notify you of revoked app approval.

lowerBoundnumber | null

The lower limit of the person’s age range.

mostRecentApprovalDate(optional)number | null
Android

The effective date (timestamp) of the most recent significant change that was approved.

significantChangeApprovalDate(optional)number | null
Only for:
Android

The effective date (timestamp) of the most recently approved significant change.

null when no changes have been recorded for your app.

significantChangeStatus(optional)'APPROVED' | 'PENDING' | 'DECLINED' | null
Only for:
Android

Whether a guardian has approved the significant changes recorded for your app:

  • 'APPROVED' — the most recent significant change, and all earlier ones, are approved.
  • 'PENDING' — one or more significant changes are waiting for approval.
  • 'DECLINED' — approval was denied for one or more significant changes.

null for unsupervised accounts, and for supervised accounts with no significant changes yet.

upperBoundnumber | null

The upper limit of the person’s age range.

AgeSignalsStatus

Android

Literal type: string

The sharing status of age signals, returned by requestAgeSignalsAccessAsync.

Acceptable values are: 'SHARED' | 'NOT_SHARED' | 'VERIFICATION_REQUIRED'

Error codes

Available in the code property of any error thrown by the native module. For Android-specific error codes, see the "Error code reference" in Use Play Age Signals API docs.

CodePlatformDescription
ERR_AGE_RANGE_USER_DECLINED
iOS
User declined to share their age range.
ERR_AGE_RANGE_NOT_AVAILABLE
iOS
Age range not available. The most likely cause is that user is not signed in to their Apple account on the device.
ERR_AGE_RANGE_INVALID_REQUEST
iOS
The provided params were invalid. The age ranges need to be minimum 2 years apart.
ERR_AGE_RANGE_TASK_CANCELLED
Android
The user dismissed the Play Age Signals age sharing consent screen.