Skip to content

Commit

Permalink
feat(payment): update stripeAdnroidVersion to currently
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlabo committed Mar 7, 2024
1 parent a946aed commit 7929b86
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions 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.31.+'
stripeAndroidVersion = project.hasProperty('stripeAndroidVersion') ? rootProject.ext.stripeAndroidVersion : '20.39.+'
gsonVersion = project.hasProperty('gsonVersion') ? rootProject.ext.gsonVersion : '2.10.+'
}

Expand Down Expand Up @@ -68,7 +68,11 @@ dependencies {

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

implementation "com.stripe:stripe-android:$stripeAndroidVersion"
implementation("com.stripe:stripe-android:$stripeAndroidVersion") {
exclude group: 'androidx.emoji2', module: 'emoji2'
}
// Avoid using 1.4.0 since that requires targetSdkVersion 34
implementation('androidx.emoji2:emoji2:1.3.0').force
implementation "com.google.android.gms:play-services-wallet:$playServicesWalletVersion"
implementation "com.google.code.gson:gson:$gsonVersion"
}

0 comments on commit 7929b86

Please sign in to comment.