Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test #1780

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft

Test #1780

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,20 @@ dependencies {
implementation ("com.stripe:financial-connections:$stripe_version") {
exclude group: 'androidx.emoji2', module: 'emoji2'
}
implementation ("androidx.lifecycle:lifecycle-livedata-core:2.8.7")
{
version {
strictly '2.7.0'
}
}
// END TODO

// TODO: Remove after upgrading react-native-screens
implementation ("androidx.fragment:fragment-ktx:1.8.5") {
version {
strictly '1.6.2'
}
}
implementation('androidx.emoji2:emoji2:1.3.0').force // Avoid using 1.4.0 since that requires targetSdkVersion 34
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
Expand Down
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
StripeSdk_kotlinVersion=1.8.0
# Keep StripeSdk_stripeVersion in sync with https://github.com/stripe/stripe-identity-react-native/blob/main/android/gradle.properties
StripeSdk_stripeVersion=20.52.+
StripeSdk_stripeVersion=20.53.+
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ class PaymentSheetFragment(
}
}

@OptIn(ExperimentalPaymentMethodLayoutApi::class)
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
val merchantDisplayName = arguments?.getString("merchantDisplayName").orEmpty()
Expand Down
15 changes: 15 additions & 0 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,21 @@ dependencies {
}
}
// END TODO

implementation ("androidx.lifecycle:lifecycle-livedata-core:2.8.7")
{
version {
strictly '2.7.0'
}
}
// END TODO

// TODO: Remove after upgrading react-native-screens
implementation ("androidx.fragment:fragment-ktx:1.8.5") {
version {
strictly '1.6.2'
}
}
implementation fileTree(dir: "libs", include: ["*.jar"])
//noinspection GradleDynamicVersion
implementation "com.facebook.react:react-native:+" // From node_modules
Expand Down
6 changes: 3 additions & 3 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -305,15 +305,15 @@ PODS:
- StripePayments (= 23.32.0)
- StripePaymentsUI (= 23.32.0)
- StripeUICore (= 23.32.0)
- stripe-react-native (0.38.6):
- stripe-react-native (0.39.0):
- React-Core
- Stripe (~> 23.32.0)
- StripeApplePay (~> 23.32.0)
- StripeFinancialConnections (~> 23.32.0)
- StripePayments (~> 23.32.0)
- StripePaymentSheet (~> 23.32.0)
- StripePaymentsUI (~> 23.32.0)
- stripe-react-native/Tests (0.38.6):
- stripe-react-native/Tests (0.39.0):
- React-Core
- Stripe (~> 23.32.0)
- StripeApplePay (~> 23.32.0)
Expand Down Expand Up @@ -512,7 +512,7 @@ SPEC CHECKSUMS:
RNCPicker: 0bf8ef8f7800524f32d2bb2a8bcadd53eda0ecd1
RNScreens: fa9b582d85ae5d62c91c66003b5278458fed7aaa
Stripe: d546a79759fb2b0983076d2551096b91d032693a
stripe-react-native: f72717815a4eba2b584518cc16aa86c844e97fc2
stripe-react-native: 68190b99626015b0c2c148281b46ad146e218d74
StripeApplePay: fd4aeaa8af1ebbfe5e38390ef7b4607f66494f80
StripeCore: 4999b0c234127b28b9e656caa558ba4406ce58b3
StripeFinancialConnections: 4e50d2395e74c7637f84fc9d89fa5740b8240f49
Expand Down
Loading