You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
===== Description =====
Here is 3 payment options: google pay, apple pay, card pay(payment intent sheet)
google pay & apple pay is working well
And card pay is working well in android device
But card pay in iPhone Device is not working. cause error "StripeUICore/ImageMaker.swift:51: Assertion failed: Failed to find an image named apple_pay_mark". And then lost connection to device.
I have run flutter clean, flutter pub get, pod delegrate, pod install.
Smartphone / tablet
Device: iPhone Se(3rd generation)
OS: iOS 17.5
Package version: 9.5.0+1
Flutter version 3.7.0
The text was updated successfully, but these errors were encountered:
===== Code Block =====
Future _stripePaymentProcess(dynamic paymentIntent, int paymentType, PlaceOrderPojo paymentDetail) async {
if (paymentType == 1) {
await Stripe.instance.initPaymentSheet(
paymentSheetParameters: SetupPaymentSheetParameters(
customFlow: true,
merchantDisplayName: 'Hare',
paymentIntentClientSecret: paymentIntent['paymentIntent'],
customerEphemeralKeySecret: paymentIntent['ephemeralKey'],
customerId: paymentIntent['customerId'],
applePay: PaymentSheetApplePay(merchantCountryCode: 'NO', cartItems: [
ApplePayCartSummaryItem.immediate(
label: paymentDetail.orderNo,
amount: '${paymentDetail.totalPay}',
isPending: false)
]),
googlePay: const PaymentSheetGooglePay(
merchantCountryCode: 'NO', testEnv: true),
style: ThemeMode.dark,
),
);
}
===== Description =====
Here is 3 payment options: google pay, apple pay, card pay(payment intent sheet)
google pay & apple pay is working well
And card pay is working well in android device
But card pay in iPhone Device is not working. cause error "StripeUICore/ImageMaker.swift:51: Assertion failed: Failed to find an image named apple_pay_mark". And then lost connection to device.
I have run flutter clean, flutter pub get, pod delegrate, pod install.
Smartphone / tablet
The text was updated successfully, but these errors were encountered: