A React Native module designed for seamless integration of Card Push Provisioning into Apple Wallet and Google Wallet, enabling easy and secure addition of payment cards directly from your application.
♻️ Universal solution (Apple Wallet and Google Wallet)
💳 Easy and secure addition of payment cards from your app directly
💰 Supports Visa, MasterCard, Amex and Discover payment cards
Getting started
Using the react-native-wallet Push Provisioning features requires proper configuration and access from both Google and Apple.
Please follow the instructions below before installing the library:
To use the Google SDK in your app, you will need to whitelist your app details. Without it, calling some functions will result in a Not verified error.
To resolve it, please follow the instructions from the official Google documentation.
For your builds, you will need to prepare your app's package name and fingerprint following these steps. The values should, for example, look like this:
[!TIP]
You can display your SHA-256 certificate checksum using apksigner or keytool.
With all the required data, submit the form and wait for Google's response. After successfully whitelisting your app you will be able to use Google SDK within our library.
iOS
Step 1: Apply for appropriate entitlements
To enable In-App Provisioning in your app, you must request activation of the appropriate Apple Pay entitlements for your developer Team ID. Enterprise Team IDs are not supported. This entitlement is not available by default in our panel; you will need to request it. Send an email to apple-pay-provisioning@apple.com with your app name, Team ID, and Adam ID.
Once Apple verifies your identity, you should get documentation named Getting Started with Apple Pay In-App Provisioning, Verification & Security. In this confidential document you will find all the relevant information about:
Prerequisites for your project
Best practices to follow
How In-App Provisioning works
UX requirements
Testing process
and more...
Make sure to familiarize yourself with that document before deploying your app.
Step 2: Activate the entitlement
After getting a positive response from Apple, open the developer portal panel and search Certificates, Identifiers & Profiles -> Profiles -> Our distribution profile -> Edit and add the ApplePay In-App Provisioning Distribution entitlement.
It’s available only for the production environment so your QA must work with physical devices and cards.
Step 3: Add the entitlement to your project
Add com.apple.developer.payment-pass-provisioning entitlement to your project. Find or create .entitlements file in your project and add the entitlement like below (similarly to WalletExample.entitlements):
After completing the setup from the section above, install the react-native-wallet package from npm:
npm install @expensify/react-native-wallet
or
yarn add @expensify/react-native-wallet
Required data
Here you can find data elements used in the library, essential to work with Google Wallet and Apple Wallet APIs.
Android
Opaque Payment Card (OPC) - a binary blob of information Google Pay receives from the issuer app that could be presented to TSP to receive a token.
Token Service Provider (TSP) - a service that enhances payment security by replacing a credit card number during transactions with a unique digital identifier - token. The TSP specifies the tokenization service used to create a given token e.g. Visa, MasterCard, American Express.
Token Reference ID - a unique identifying number to refer to a DPAN (Dynamic Personal Account Number). Token Providers will assign each DPAN an issuer token ID at the time of tokenization.
iOS
Nonce - a one-time nonce value generated by Apple’s servers. This nonce must be included in the add payment request’s encrypted data.
Nonce Signature - the device-specific signature for the nonce. This signature must be included in the add payment request’s encrypted data.
Certificates - an array of NSData objects. Each object contains a DER encoded X.509 certificate, with the leaf first and root last. You must download the root CA to validate the entire chain.
Encrypted Pass Data- an encrypted JSON file containing the sensitive information needed to add a card to Apple Pay (Base 64 encoded). More details here.
Ephemeral Public Key - a key used by elliptic curve cryptography (ECC) (Base 64 encoded).
API Reference
The library offers five functions for seamless integration and use of the Apple Wallet and Google Wallet APIs. Additionally, it includes one listener that informs when the added card has been activated. Below, these functions are described along with the data types involved.
Functions
Function
Description
Parameters
Returns / Type
iOS
Android
getSecureWalletInfo
Returns necessary platform-specific wallet information for secure transactions.
None
WalletData
✅
❌
checkWalletAvailability
Checks if the wallet is ready and initializes it if possible.
None
boolean
✅
✅
getCardStatusBySuffix
Retrieves the current status of a card in the wallet.
lastDigits: string (The last few digits of the card number)
CardStatus
✅
✅
getCardStatusByIdentifier
Returns the state of a card based on a platform-specific identifier. On Android, it's Token Reference ID and on iOS, it's Primary Account Identifier.
identifier: string, tsp: string
CardStatus
✅
✅
addCardToGoogleWallet
Initiates native Push Provisioning flow for adding a card to the Google Wallet.
data: AndroidCardData
TokenizationStatus
❌
✅
addCardToAppleWallet
Initiates native Push Provisioning flow for adding a card to the Apple Wallet.
This callback is invoked with a nonce, its signature, and a certificate array obtained from Apple. It is expected that you will forward these details to your server or the card issuer's API to securely encrypt the payload required for adding cards to the Apple Wallet.
A ready-to-use component that simplifies the addition of payment cards to Google Wallet and Apple Wallet. The button automatically adapts its appearance according to the platform and language specified.
It uses official assets provided by Google and Apple in their Wallet-related branding guidelines.
[!IMPORTANT]
Please bear in mind the brand rules provided by Google and Apple when adding this component to your application.
Adhering to these guidelines is crucial not only to comply with legal requirements but also to reassure users of the authenticity and security of your application.
Property
Type
Required
Description
onPress
() => void
Yes
A callback that is triggered when the button is pressed.
locale
string
Yes
The language code to display the correct button language.
platform
Platform (ios | android)
Yes
The platform type to ensure the appropriate button image is implemented.
To successfully publish your app, you will need to navigate through a series of mandatory test cases on both platforms.
Android
Before deploying your app to the Google Play Store, make sure you have taken care of the security when implementing Push Provisioning and properly tested your code. To accomplish it, please familiarize yourself with the Google's App Push Provisioning best practices.
The latest information about deploying apps with Google TapAndPay SDK can be found in the pre-launch process and beta tests sections in Google documentation. Make sure to complete all of the steps specified by Google connected to the Google's branding, API safety, and app stability.
The app will need to be reviewed by Google. During this process, it will need to pass 4 mandatory test cases that are specified here. They verify how your app handles card state tracking in different scenarios.
[!NOTE]
Please make sure to hide the Add to Google Wallet buttons when cards are already added to the wallet.
iOS
When implementing the In-App Push Provisioning feature in your App make sure that your app follows Apple's branding guidelines connected to Apple Wallet. Remember that you must not create your own buttons or your app could be rejected at revision. You can use the AddWalletButton component instead!
When the pass is already provisioned, make sure to hide this button and replace it with text like Added to Apple Wallet. The card is fully provisioned once it added to your main device (user's iPhone) and all linked devices (for example Apple Watch).
The In-App Provisioning feature must be reviewed and verified by Apple's certification team before submitting your app to the App Store. Below are some key scenarios that may be tested during the review process:
Enrolling a card into Apple Wallet
Enrolling a card into the Apple Watch
Attempting to enroll a card that has already been added via the Wallet app
Manually adding a card using its IBAN
Adding multiple cards from the same issuer
Adding and removing the same card
Handling an incoming call during the provisioning process
...
Apple may request a demonstration of certain test scenarios, such as verifying the ability to add up to twenty different cards for a single user. Be prepared to provide validation for such cases.
Additionally, when submitting your app to the App Store, you must include:
A demo account for testing.
A demo video showcasing the In-App Provisioning experience.
Compatibility
@expensify/react-native-wallet supports the three latest minor releases of react-native (0.76.0+)
Contributing
Contributions to this library are done under https://github.com/Expensify/App. Please refer to that repo and all its guidelines for contributing.
License
MIT
This library is co-developed by Expensify, the fastest way to do expenses, travel, and corporate cards, in collaboration with Software Mansion, React Native core contributors and experts in building high-performing mobile solutions.
A React Native module designed for seamless integration of Card Push Provisioning into Apple Wallet and Google Wallet, enabling easy and secure addition of payment cards directly from your application.
The npm package @expensify/react-native-wallet receives a total of 0 weekly downloads. As such, @expensify/react-native-wallet popularity was classified as not popular.
We found that @expensify/react-native-wallet demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.It has 1 open source maintainer collaborating on the project.
Package last updated on 23 Jun 2025
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.