Skip to content

Commit

Permalink
feat(android): remove exclude emoji2 from payment
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlabo committed Dec 4, 2024
1 parent 6628e9a commit eb94e48
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 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.52.+'
stripeAndroidVersion = project.hasProperty('stripeAndroidVersion') ? rootProject.ext.stripeAndroidVersion : '21.2.+'
gsonVersion = project.hasProperty('gsonVersion') ? rootProject.ext.gsonVersion : '2.10.+'
}

Expand Down Expand Up @@ -69,7 +69,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

implementation("com.stripe:stripe-android:$stripeAndroidVersion") {
exclude group: 'androidx.emoji2', module: 'emoji2'
exclude group: 'org.bouncycastle', module: 'bcprov-jdk15to18'
}

implementation "com.google.code.gson:gson:$gsonVersion"
Expand Down
4 changes: 2 additions & 2 deletions packages/terminal/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ ext {

playServicesWalletVersion = project.hasProperty('playServicesWalletVersion') ? rootProject.ext.playServicesWalletVersion : '19.2.+'
volleyVersion = project.hasProperty('volleyVersion') ? rootProject.ext.volleyVersion : '1.2.1'
stripeterminalTapToPayVersion = project.hasProperty('stripeterminalTapToPayVersion') ? rootProject.ext.stripeterminalTapToPayVersion : '4.0.0'
stripeterminalCoreVersion = project.hasProperty('stripeterminalCoreVersion') ? rootProject.ext.stripeterminalCoreVersion : '4.0.0'
stripeterminalTapToPayVersion = project.hasProperty('stripeterminalTapToPayVersion') ? rootProject.ext.stripeterminalTapToPayVersion : '4.1.0'
stripeterminalCoreVersion = project.hasProperty('stripeterminalCoreVersion') ? rootProject.ext.stripeterminalCoreVersion : '4.1.0'
}

buildscript {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ public void setSimulatorConfiguration(PluginCall call) {
new SimulatorConfiguration(
SimulateReaderUpdate.valueOf(call.getString("update", "UPDATE_AVAILABLE")),
new SimulatedCard(SimulatedCardType.valueOf(call.getString("simulatedCard", "VISA"))),
call.getLong("simulatedTipAmount", null)
call.getLong("simulatedTipAmount", null),
false
)
);

Expand Down

0 comments on commit eb94e48

Please sign in to comment.