Closed Alfaizkhan closed 2 years ago
Describe the bug Apple pay button is not showing in physical device but working fine in simulator. Here's code snippet.
// Initialize the payment sheet await Stripe.instance.initPaymentSheet( paymentSheetParameters: SetupPaymentSheetParameters( // Main params paymentIntentClientSecret: clientSecret, customerId: customerId, customerEphemeralKeySecret: ephemeralKey, // Merchant Name merchantDisplayName: 'Agent Duty', style: ThemeMode.system, applePay: const PaymentSheetApplePay( merchantCountryCode: 'US', ), ), );
did you create a ceritficate as described in :https://developer.apple.com/documentation/passkit/apple_pay/setting_up_apple_pay. ?
Describe the bug Apple pay button is not showing in physical device but working fine in simulator. Here's code snippet.