https://github.com/capacitor-community/stripe
Stripe Mobile SDK wrapper for Capacitor
https://github.com/capacitor-community/stripe
capacitor capacitor-plugin stripe
Last synced: 5 months ago
JSON representation
Stripe Mobile SDK wrapper for Capacitor
- Host: GitHub
- URL: https://github.com/capacitor-community/stripe
- Owner: capacitor-community
- License: mit
- Created: 2019-11-02T16:04:26.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-12-19T10:08:06.000Z (6 months ago)
- Last Synced: 2025-12-20T22:51:47.946Z (6 months ago)
- Topics: capacitor, capacitor-plugin, stripe
- Language: Kotlin
- Homepage: https://capacitor-community-stripe.netlify.app/
- Size: 18.2 MB
- Stars: 231
- Watchers: 13
- Forks: 93
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-capacitorjs - @capacitor-community/stripe - Stripe Mobile SDK wrapper for Capacitor. (Plugins / Community Plugins)
- awesome-capacitor - Stripe - SDK bindings for payment processing in Capacitor Applications. (Community plugins)
README

Stripe
Capacitor community plugin for native Stripe.
## packages
| package name | description | path |
|--------------------------------------|-------------|--------------------------------------------------------------------------------------------------------|
| @capacitor-community/stripe | Support for non-personal payments using Stripe | [/packages/payment](https://github.com/capacitor-community/stripe/tree/main/packages/payment#readme) |
| @capacitor-community/stripe-identity | Supports identity verification using Stripe | [/packages/identity](https://github.com/capacitor-community/stripe/tree/main/packages/identity#readme) |
| @capacitor-community/stripe-terminal | Support for in-person payments using Stripe | [/packages/terminal](https://github.com/capacitor-community/stripe/tree/main/packages/terminal#readme) |
## Hint
### Versions
Users of Capacitor v7 should use version v7 of the Plugin.
```bash
% npm install @capacitor-community/stripe@7
% npm install @capacitor-community/stripe-identity@7
% npm install @capacitor-community/stripe-terminal@7
```
### How to use Stripe Android currently package
Capacitor Android 7's default settings is here:
```gradle
ext {
minSdkVersion = 24
compileSdkVersion = 36
targetSdkVersion = 36
```
To use the latest Stripe Android, you need to version these up. To use the latest features, follow these steps.
1. Open `android/variables.gradle` and change sdkVersion version, if need.
2. Add `stripeAndroidVersion`, `identityVersion` or `stripeterminalCoreVersion` and set required version. Release information is here:
- https://github.com/stripe/stripe-android/releases
- https://github.com/stripe/stripe-terminal-android/releases
```diff
ext {
- minSdkVersio = 24
+ minSdkVersion = 26
compileSdkVersion = 36
targetSdkVersion = 36
androidxActivityVersion = '1.11.0'
androidxAppCompatVersion = '1.7.1'
androidxCoordinatorLayoutVersion = '1.3.0'
androidxCoreVersion = '1.17.0'
androidxFragmentVersion = '1.8.9'
coreSplashScreenVersion = '1.2.0'
androidxWebkitVersion = '1.14.0'
junitVersion = '4.13.2'
androidxJunitVersion = '1.3.0'
androidxEspressoCoreVersion = '3.7.0'
cordovaAndroidVersion = '14.0.1'
// If you will set @capacitor-community/stripe:
+ stripeAndroidVersion = 【Your version】
// If you will set @capacitor-community/stripe-identity:
+ identityVersion = 【Your version】
// If you will set @capacitor-community/stripe-terminal:
+ stripeterminalCoreVersion =【Your version】
+ stripeterminalTapToPayVersion =【Your version】
+ stripeterminalAppOnDevicesVersion =【Your version】
}
```
Note: `@capacitor-community/stripe-terminal` does not work with the default sdkVersion, so these updates are mandatory. See [/packages/terminal](https://github.com/capacitor-community/stripe/tree/main/packages/terminal#readme) for more information.
### Error when running `cap update ios`
```
[!] CocoaPods could not find compatible versions for pod "StripePaymentSheet":
In snapshot (Podfile.lock):
..
You have either:
* out-of-date source repos which you can update with `pod repo update` or with `pod install --repo-update`.
* changed the constraints of dependency `StripePaymentSheet` inside your development pod `CapacitorCommunityStripe`.
You should run `pod update StripePaymentSheet` to apply changes you've made.
```
You will see this error often when using Capacitor iOS. The solution is simple: do the following:
```bash
% cd ios/App && pod install --repo-update
```
or
```bash
% cd ios/App && pod update
```
## Maintainers
| Maintainer | GitHub | Social |
| ------------------- | ----------------------------------- | ------------------------------------- |
| Hidetaka Okamoto | [hideokamoto](https://github.com/hideokamoto) | [@hide__dev](https://twitter.com/hide__dev) |
| Masahiko Sakakibara | [rdlabo](https://github.com/rdlabo) | [@rdlabo](https://twitter.com/rdlabo) |
Made with [contributors-img](https://contrib.rocks).
## Demo
- [Demo code is here](https://github.com/capacitor-community/stripe/tree/master/demo). Please check these code before ask at issues.
- Demo of Web is [hosting here](https://capacitor-community-stripe.netlify.app/).
### Screenshots
#### @capacitor-community/stripe
| | Android | iOS | Web |
|:------------:|:-----------------------------------------------:|:-------------------------------------------:|:-------------------------------------------:|
| PaymentSheet |  |  |  |
| PaymentFlow |  |  |  |
| ApplePay | Not supported |  | beta. |
| GooglePay |  | Not supported |  |
#### @capacitor-community/stripe-identity
| | Android | iOS | Web |
|:------------:|:-----------------------------------------------:|:-------------------------------------------:|:--------------------------------------:|
| Identity |  |  |  |
## How to use Demo
```bash
% git clone git@github.com:capacitor-community/stripe.git
% cd npm install && npm run build
% cd demo && npm install && npm run cap && npx cap update
```