npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@capawesome/capacitor-android-sms-retriever

v0.1.1

Published

Capacitor plugin for OTP autofill on Android via the SMS User Consent and Phone Number Hint APIs.

Readme

Capacitor Android SMS Retriever Plugin

Capacitor plugin for OTP autofill on Android via the SMS User Consent and Phone Number Hint APIs.

Features

  • 💬 SMS User Consent: Read an incoming verification SMS after a one-tap system consent dialog.
  • 📞 Phone Number Hint: Prefill the user's phone number via the system bottom sheet.
  • 🔒 No SMS permissions: Uses Play-policy-safe APIs that require no SMS permissions.
  • 🔁 Up-to-date: Always supports the latest Capacitor version.

Missing a feature? Just open an issue and we'll take a look!

Use Cases

The Android SMS Retriever plugin is typically used in phone number verification flows, for example:

  • OTP autofill: Retrieve an incoming verification SMS after a one-tap system consent dialog and extract the one-time code, so the user doesn't have to type it manually.
  • Phone number prefill: Prefill the phone number input field of your sign-up or login form via the system bottom sheet.
  • Play-policy-safe SMS verification: Implement SMS-based verification without requesting any SMS permissions, using the SMS User Consent and Phone Number Hint APIs.

Compatibility

| Plugin Version | Capacitor Version | Status | | -------------- | ----------------- | -------------- | | 0.x.x | >=8.x.x | Active support |

Installation

You can use our AI-Assisted Setup to install the plugin. Add the Capawesome Skills to your AI tool using the following command:

npx skills add capawesome-team/skills --skill capacitor-plugins

Then use the following prompt:

 Use the `capacitor-plugins` skill from `capawesome-team/skills` to install the `@capawesome/capacitor-android-sms-retriever` plugin in my project.

If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:

npm install @capawesome/capacitor-android-sms-retriever
npx cap sync

This plugin is only available on Android. On iOS and Web, all methods reject as unimplemented (see iOS below).

Android

Variables

This plugin will use the following project variables (defined in your app's variables.gradle file):

  • $playServicesAuthVersion version of com.google.android.gms:play-services-auth (default: 21.5.0)
  • $playServicesAuthApiPhoneVersion version of com.google.android.gms:play-services-auth-api-phone (default: 18.3.0)

iOS

This plugin has no iOS implementation and you don't need one. iOS already autofills one-time codes from incoming SMS messages in WKWebView when the input field uses autocomplete="one-time-code":

<input autocomplete="one-time-code" />

All methods reject as unimplemented on iOS.

Configuration

No configuration required for this plugin.

Usage

The following examples show how to prefill the user's phone number and retrieve a verification SMS.

Prefill the user's phone number

Request the user's phone number via the Phone Number Hint API. A system bottom sheet is displayed that lets the user pick one of the phone numbers associated with the device, for example to prefill a phone number input field. Only available on Android:

import { AndroidSmsRetriever } from '@capawesome/capacitor-android-sms-retriever';

const requestPhoneNumber = async () => {
  const { phoneNumber } = await AndroidSmsRetriever.requestPhoneNumber();
  return phoneNumber;
};

Retrieve a verification SMS

Retrieve an incoming verification SMS via the SMS User Consent API. A system consent dialog is displayed when a matching SMS is received, and the promise resolves with the full message text once the user consents, so your app can extract the one-time code itself (see Extracting the One-Time Code). Only available on Android:

import { AndroidSmsRetriever } from '@capawesome/capacitor-android-sms-retriever';

const retrieveSms = async () => {
  const { message } = await AndroidSmsRetriever.retrieveSms();
  // Extract the one-time code from the message.
  const code = message.match(/\d{6}/)?.[0];
  return code;
};

API

requestPhoneNumber()

requestPhoneNumber() => Promise<RequestPhoneNumberResult>

Request the user's phone number via the Phone Number Hint API.

A system bottom sheet is displayed that lets the user pick one of the phone numbers associated with the device. The selected phone number is returned so it can be used to prefill a phone number input field.

Only available on Android.

Returns: Promise<RequestPhoneNumberResult>

Since: 0.1.0


retrieveSms(...)

retrieveSms(options?: RetrieveSmsOptions | undefined) => Promise<RetrieveSmsResult>

Retrieve an incoming verification SMS via the SMS User Consent API.

A system consent dialog is displayed when a matching SMS is received. The promise resolves with the full message text once the user consents, so the app can extract the one-time code itself.

The underlying broadcast waits up to 5 minutes for a matching SMS. If no SMS is received within this time, the promise rejects with the error code TIMEOUT.

Only available on Android.

| Param | Type | | ------------- | ----------------------------------------------------------------- | | options | RetrieveSmsOptions |

Returns: Promise<RetrieveSmsResult>

Since: 0.1.0


Interfaces

RequestPhoneNumberResult

| Prop | Type | Description | Since | | ----------------- | ------------------- | -------------------------------------- | ----- | | phoneNumber | string | The phone number selected by the user. | 0.1.0 |

RetrieveSmsResult

| Prop | Type | Description | Since | | ------------- | ------------------- | --------------------------------------------------------------------------------------------------------------------- | ----- | | message | string | The full text of the retrieved SMS message. The app is responsible for extracting the one-time code from the message. | 0.1.0 |

RetrieveSmsOptions

| Prop | Type | Description | Since | | ----------------------- | ------------------- | --------------------------------------------------------------------------------------------------------------------- | ----- | | senderPhoneNumber | string | The phone number of the sender to filter incoming messages by. If not provided, the SMS from any sender is retrieved. | 0.1.0 |

Extracting the One-Time Code

The retrieveSms(...) method resolves with the full text of the incoming SMS message. Your app is responsible for extracting the one-time code from the message, for example with a regular expression:

const { message } = await AndroidSmsRetriever.retrieveSms();
const code = message.match(/\d{6}/)?.[0];

For the SMS User Consent API to detect a message, the SMS must:

  • contain a one-time code that the user sends back to your server to complete the verification,
  • be no longer than 140 bytes,
  • not originate from a phone number in the user's contacts.

The underlying broadcast waits up to 5 minutes for a matching SMS. If no message is received within this time, the promise rejects with the error code TIMEOUT.

FAQ

How is this plugin different from other similar plugins?

It implements OTP autofill on Android through the SMS User Consent and Phone Number Hint APIs, so you can read a verification SMS and prefill the user's phone number without requesting any SMS permissions and while staying within Google Play policy. It's a focused, fully typed API that handles the system consent dialog and bottom sheet for you, and it's actively maintained against the latest Capacitor and Android versions. On iOS you don't need it at all — the WebView already autofills one-time codes — and the README explains exactly how.

Does this plugin require any SMS permissions?

No, the plugin uses the SMS User Consent and Phone Number Hint APIs, which are Play-policy-safe and require no SMS permissions. Instead of reading SMS messages silently, the user explicitly consents via a one-tap system dialog before your app receives the message.

Does this plugin work on iOS or Web?

No, this plugin only provides an Android implementation and you don't need one on iOS. iOS already autofills one-time codes from incoming SMS messages in WKWebView when the input field uses autocomplete="one-time-code". On iOS and Web, all methods reject as unimplemented.

Why does retrieveSms reject with the error code TIMEOUT?

The underlying broadcast waits up to 5 minutes for a matching SMS. If no matching message is received within this time, the promise rejects with the error code TIMEOUT. Make sure the SMS is sent while the broadcast is active and meets the requirements of the SMS User Consent API.

Why is my SMS message not detected?

For the SMS User Consent API to detect a message, the SMS must contain a one-time code that the user sends back to your server to complete the verification, be no longer than 140 bytes, and not originate from a phone number in the user's contacts. See Extracting the One-Time Code for more information.

Can I filter incoming messages by sender?

Yes, you can pass the senderPhoneNumber option to the retrieveSms(...) method to only retrieve messages from a specific sender. If not provided, the SMS from any sender is retrieved.

Can I use this plugin with Ionic, React, Vue or Angular?

Yes, the plugin is framework-agnostic. It works in any Capacitor app regardless of the web framework, including Ionic with Angular, React, or Vue, as well as plain JavaScript projects.

Related Plugins

  • SMS Composer: Open the native SMS composer prefilled with recipients and a message body.
  • Password Autofill: Save passwords to the platform credential store.
  • SIM: Read SIM card and carrier information.

Newsletter

Stay up to date with the latest news and updates about the Capawesome, Capacitor, and Ionic ecosystem by subscribing to our Capawesome Newsletter.

Changelog

See CHANGELOG.md.

License

See LICENSE.