Skip to content

Commit

Permalink
Merge pull request #333 from capacitor-community/fix/android_2032
Browse files Browse the repository at this point in the history
fix(payment): default android version must be support 33
  • Loading branch information
rdlabo authored Mar 4, 2024
2 parents 2fbf0c1 + 8b39bf9 commit 0c95aed
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
18 changes: 10 additions & 8 deletions packages/payment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -610,14 +610,16 @@ iOS Only

#### CreateApplePayOption

| Prop | Type |
| ----------------------------------- | ----------------------------------------------------------------------------- |
| **`paymentIntentClientSecret`** | <code>string</code> |
| **`paymentSummaryItems`** | <code>{ label: string; amount: number; }[]</code> |
| **`merchantIdentifier`** | <code>string</code> |
| **`countryCode`** | <code>string</code> |
| **`currency`** | <code>string</code> |
| **`requiredShippingContactFields`** | <code>('postalAddress' \| 'phoneNumber' \| 'emailAddress' \| 'name')[]</code> |
| Prop | Type |
| -------------------------------------- | ----------------------------------------------------------------------------- |
| **`paymentIntentClientSecret`** | <code>string</code> |
| **`paymentSummaryItems`** | <code>{ label: string; amount: number; }[]</code> |
| **`merchantIdentifier`** | <code>string</code> |
| **`countryCode`** | <code>string</code> |
| **`currency`** | <code>string</code> |
| **`requiredShippingContactFields`** | <code>('postalAddress' \| 'phoneNumber' \| 'emailAddress' \| 'name')[]</code> |
| **`allowedCountries`** | <code>string[]</code> |
| **`allowedCountriesErrorDescription`** | <code>string</code> |


#### PluginListenerHandle
Expand Down
2 changes: 1 addition & 1 deletion packages/payment/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ext {
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'

playServicesWalletVersion = project.hasProperty('playServicesWalletVersion') ? rootProject.ext.playServicesWalletVersion : '19.2.+'
stripeAndroidVersion = project.hasProperty('stripeAndroidVersion') ? rootProject.ext.stripeAndroidVersion : '20.34.+'
stripeAndroidVersion = project.hasProperty('stripeAndroidVersion') ? rootProject.ext.stripeAndroidVersion : '20.31.+'
gsonVersion = project.hasProperty('gsonVersion') ? rootProject.ext.gsonVersion : '2.10.+'
}

Expand Down
2 changes: 1 addition & 1 deletion packages/payment/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@capacitor-community/stripe",
"version": "5.4.2",
"version": "5.4.3-1",
"engines": {
"node": ">=16.0.0"
},
Expand Down

0 comments on commit 0c95aed

Please sign in to comment.