59 questions
0
votes
0
answers
21
views
Is flutter stripe compatible with android os version 16?
I’m developing an app in Flutter, but my device is running Android OS version 16. When I use the flutter_stripe package, it shows an error that something went wrong. How can I resolve the payment ...
1
vote
1
answer
97
views
How to add ACH Direct Debit as payment method in Flutter using Flutter Stripe?
I am using Stripe as payment processor for my Flutter app. I have made the card part working. Now I am trying to allow customers to add ACH Direct Debit as payment method and ran into some ...
0
votes
0
answers
76
views
Flutter Stripe Sdk error - java.lang.NoClassDefFoundError: Failed resolution of: Lcom/stripe/android/view/AddPaymentMethodActivityStarter$Result;
One month ago the project was working. I dind't change anything in the implementation, it doesn't work anymore. I tried evry flutter command (clean, install dependency again etc.)
E/AndroidRuntime( ...
2
votes
1
answer
411
views
I am using Pay plugin in flutter and facing issues with Google pay. I am using stripe as a gateway method. Error code: OR_BIBED_06
I am using flutter and PAY plugin. I am receiving this issue:
This merchant is having trouble accepting your payment right now. Try using a different payment method. [OR_BIBED_06]
Here is my code:
...
0
votes
0
answers
103
views
Flutter mek_stripe_terminal: ^3.8.0 use for stripe tap to pay gets error
What went wrong:
Execution failed for task ':app:checkDebugDuplicateClasses'.
Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
Failed to transform jackson-core-2.16.1.jar (...
1
vote
0
answers
52
views
How can i perform apple pay with flutter stripe #Update: Fixed
following section gives payment button for apple pay
if (_selectedMethodIndex == 4)
BottomAppBar(
child: SizedBox(
width: ...
1
vote
1
answer
190
views
Unable to Show Google Pay Button in Stripe Payment Sheet in Flutter
I’m trying to integrate Google Pay with Stripe in my Flutter app to display a Google Pay button in the payment sheet. I followed the steps in this https://www.youtube.com/watch?v=4lUaLjSe4y4, but the ...
5
votes
0
answers
107
views
Unable to Track Payment Failures or Close Payment Sheet Manually in presentPaymentSheet()
I'm integrating manual card entry using presentPaymentSheet() and have encountered the following issues:
There is no listener or response tracker available to capture payment failures, making it ...
0
votes
1
answer
141
views
How to catch stripe errors on flutter?
I'm creating a subscription based platform, so I integrated the stripe subscription payment, if user is able to enter all the card data and proceed with the payment successfully, nothing goes wrong. ...
0
votes
1
answer
373
views
Flutter & Stripe - Subscription - PaymentSheet cannot set up a PaymentIntent in status 'succeeded'
I have an application written in Flutter and I've implemented one-time payment (for such as game point) in the app by using Stripe SDK 11.0.0. My backend & the application works perfectly for that ...
0
votes
1
answer
276
views
how to use Stripe in flutter application?
I have stucked for using Stripe in my flutter app , and searched several youtube toturials , and alot of docs , still didnt fine a good solution how to implement that , i want to have an screen which ...
1
vote
1
answer
345
views
Stripe , Theme isn't set to use Theme.AppCompat or Theme.MaterialComponents
I am facing an issue when trying to implement Stripe with flutter , I did all what they said in the readme , but I still have this problem :
Your theme isn't set to use Theme.AppCompat or Theme....
1
vote
1
answer
408
views
Trying to implement stripe in Flutter/iOS and I get errors in all the generated files in Pod, So, I can't even run the app
Swift Compiler Error (Xcode): Missing return in closure expected to return 'String'
/Users/mac/Documents/Programming/Projects/yay_food/ios/Pods/StripeCore/StripeCore/StripeCore/Source/Analytics/...
3
votes
0
answers
285
views
Implementing stripe in ios, causes error in generated swift files? 'Missing return in closure expected to return 'String''
Swift Compiler Error (Xcode): Missing return in closure expected to return 'String'
/Users/mac/Documents/Programming/Projects/yay_food/ios/Pods/StripeCore/StripeCore/StripeCore/Source/Analytics/...
2
votes
0
answers
119
views
Execution failed for task ':stripe_android:compileDebugKotlin'. when I installed flutter_stripe
I just installed flutter_stripe in my flutter project and did all the android requirements in the package page https://pub.dev/packages/flutter_stripe
right after that I started getting this error :
...
1
vote
0
answers
850
views
Title: Initialization Issue with flutter_stripe Due to Android Theme Settings
I am encountering an issue while initializing the flutter_stripe plugin in my Flutter application. The error suggests that my application's theme is not using Theme.AppCompat or Theme....
0
votes
0
answers
242
views
flutter_stripe package doesn't work in flutter web
I have implemented the flutter_stripe package with flutter and it works fine in mobile but when tested on web I always get this error :
You may test your Stripe.js integration over HTTP. However, live ...
0
votes
0
answers
272
views
How to integrate stripe payment for flutter web using stripe.js
In my flutter web application, I want to integrate stripe payment gateway(cards,google pay and apple pay) using stripe javascript function. am not able to find any documentation regarding the same
...
0
votes
1
answer
237
views
flutter stripe gives issues on some devices
I'm using
flutter_stripe: ^9.5.0+1
and
void main() async {
WidgetsFlutterBinding.ensureInitialized();
Stripe.publishableKey = stripePublishableKey;
await Stripe.instance....
1
vote
0
answers
515
views
While Initializing payment sheet in flutter for stripe I get null as return value
I am trying to integrate Flutter with Stripe.
The following code is how I create payment intent
Future<Map<String, dynamic>> createPaymentIntent(
String amount, String currency) async {...
0
votes
1
answer
78
views
Could not cast value of type 'NSNull' (0x1b9059de8) to 'NSDictionary' (0x1b9056b58). getting in flutter_stripe IOS Flutter app
I am using flutter_stripe 9.4.0, this code is working fine on android device but when I run on IOS it gives an error and app crashes
Error is: Could not cast value of type 'NSNull' (0x1b9059de8) to '...
2
votes
0
answers
362
views
flutter_stripe: CardFormField shows blank form when phone is in dark mode
I have followed the steps of configuring the flutter_stripe package correctly as mentioned here.
The problem is that my phone is in dark mode, and when I use the CardFormField provided from the ...
0
votes
0
answers
188
views
Stripe flutter error: Unable to infer complex closure return type; add explicit type to disambiguate
I just started getting this issue after adding flutter stripe package while running the app. I can't figure out why this issue coming again and again. I tried several solutions including pod install ...
0
votes
2
answers
326
views
Can we show all the saved cards and use them through stripe in Flutter Web. If yes, then How?
Can we show all the saved cards for respective customers and use them to make payments through Stripe in Flutter Web? If yes, then How?
I tried most of the things but haven't achieved what I am ...
1
vote
4
answers
188
views
Flutter - Stripe : type 'List<dynamic>' is not a subtype of type 'Map<String, dynamic>?' error in method_channel_stripe.dart:263
It's my first post here.
I'm struggling with a Stripe integration in a Flutter project and can't find any other similar issue or problem on the web.
I'm using flutter Bloc and Stripe.
Once I run the ...
2
votes
0
answers
780
views
Flutter Stripe Payment Sheet Google Pay Not Showing Android
I have integrated Stripe into flutter app, using flutter_stripe: ^7.0.0, every thing works fine when showing payment sheet for getting transaction from cards. Now I want to add Google Pay and Apple ...
0
votes
0
answers
149
views
Stripe reflect connected account customer payment_method to platform customer payment method
I have implemented connected accounts in Stripe. The customers are created on the platform and when they want to make a payment on a connected account, the customer and his payment method from the ...
1
vote
0
answers
52
views
googlepay_button_content missing stripe
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processDebugResources'.
> A failure occurred while executing com.android.build.gradle.internal.res....
0
votes
1
answer
540
views
Error when setting up klarna payments in flutter_stripe
I am using the flutter_stripe library to setup payments in my app but am seeing an error that does not seem to be covered in their documentation.
This is my code:
final paymentIntent = await ...
0
votes
0
answers
685
views
Stripe subscription API returning an empty subscription list for my customer in Flutter even though payment is successful
successful payment image I've two subscription plans in my stripe account right and I'm fetching them in the app when a user subscribes I can see the payment in the dashboard as successful but when u ...
0
votes
1
answer
1k
views
Stripe.createPaymentMethod Causes App to Freeze on Android and Stops Further Execution
I'm using flutter_stripe package and I have functionality in my app to save a card, so it can be used later. I'm following these steps;
Calling Stripe.instance.createPaymentMethod
Calling Stripe....
2
votes
2
answers
4k
views
Flutter: Stripe payment sheet does not appear
I copied this code from various pieces found on the internet. I followed Stripe's instructions for the integration and now I do not receive any errors:
Use Android 5.0 (API level 21) and above
Use ...
0
votes
0
answers
2k
views
How to create token from stripe card form
How can we generate a token from stripe card form in flutter using flutter_stripe: ^9.0.0+1
Link - https://pub.dev/packages/flutter_stripe
final TokenData tokenData = await Stripe.instance.createToken(...
1
vote
0
answers
53
views
Flutter Stripe and Firebase Initialisation
I'm trying to implement Stripe to my web app using Firebase. I've tried a lot of different ways, but so far nothing works.
I'm trying with flutter_stripe, but when I want to do that:
Future<void>...
0
votes
1
answer
749
views
StripeException "Invalid token ID: tok_xx" when integrating flutter_stripe with Google Pay (Pay plugin)
I am trying to integrate Google Pay using the Pay plugin to flutter_stripe library in my flutter application. I am getting the token from the Pay plugin after the payment but when I try to send it to ...
0
votes
1
answer
175
views
Issue in displaying card in stripe payment intigration
I want to intigrate stripe payment but i got this error Instance of 'StripeConfigException Also my when i click on pay button it is not showing any type of card. I want to print jsonresponse["...
0
votes
0
answers
386
views
Issue is in displaying card in stripe payment
I want to intigrate stripe payment but i got this error
Instance of 'StripeConfigException
Also my when i click on pay button it is not showing any type of card.
I want to print jsonresponse["...
0
votes
0
answers
158
views
Instance of 'StripeConfigException'
I want to intigrate stripe payment method but i am facing error.I am unable to show paymentsheet.Also when i click on pay button this error happened
Instance of 'StripeConfigException'
D/...
1
vote
0
answers
1k
views
Unhandled Exception: Instance of 'StripeConfigException'
I want to intigrate stripe payment but i get this error
I am using flutter_stripe: ^8.0.0+1
ERROR MESSAGES
[ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: Instance of '...
1
vote
1
answer
831
views
Flutter Stripe payment intent without secret-key
I'm trying to add Stripe payment intent in flutter but the issue is in the new library flutter_stripe: ^7.0.0 requires a secret key but the secret key is handled in the backend API(server).
I did it ...
3
votes
1
answer
2k
views
Your Main Activity class com.ryanheise.audioservice.AudioServiceActivity is not a subclass FlutterFragmentActivity
I'm trying to create music app uses just_audio & just_audio_background plugins, App is working fine but I'm trying to integrate Stripe from flutter_stripe plugin. I get an exception when click on ...
0
votes
1
answer
307
views
Keyboard is hiding flutter_stripe CardFields, not pushing the screen
In my case, the CardField is positioned at the bottom of the screen. When the keyboard opens up on focus, it is not pushing to the screen to show the input fields. This happens only with the CardField,...
0
votes
0
answers
731
views
Payment sheet is showing on IOS but not on Android Flutter Stripe
Payment sheet is working fine on IOS devices but not on Android devices. I have completed the android integration steps as describe in the ReadMe file. Code is working fine.. i am able to initialize ...
0
votes
2
answers
2k
views
How to get only token Id using flutter stripe from card information?
I need just to create a token from the Card number, expire month/year, and CVC using flutter-stripe. Could anyone please suggest to me any complete resources or source code to solve this problem? ...
2
votes
0
answers
1k
views
How to get only token Id from card info using flutter stripe?
I am trying to make a token-id from card information like card number, month, year, and CVC.
This could be possible by the stripe_payment package with the given code:
StripePayment....
0
votes
2
answers
91
views
flutter problem: This expression has a type of 'void' so its value can't be used
this is my flutter stripe code,
Here I want response of SetupPaymentSheetParameters and presentPaymentSheet
I want to check what king of response I am getting,
Future<void> makePayment(data) ...
11
votes
3
answers
18k
views
Failed to find sync for id=0 in Flutter
I am using flutter_stripe package and have changed android files according to their requirements.
flutter sdk : 3.0.5
flutter_stripe : 4.0.0
device : MacBook Pro m1 pro
What showing in the ...
3
votes
2
answers
2k
views
Flutter Stripe CardField not working in web
I am trying to get a CardField from the flutter_stripe package to appear on web. Simply with this code, a card field will display on ios and android. Though once I run on the app on Chrome, a blank ...
0
votes
0
answers
2k
views
How to payment with saved card using Flutter_stripe?
we want User can payment with saved list card from BackEnd.
you can see this image
current image
We success handle payment with new card and save it to use again in the future.
But, when we want ...
0
votes
1
answer
1k
views
No payment sheet has been initialized yet
main.dart
WidgetsFlutterBinding.ensureInitialized();
Stripe.publishableKey = stripePublishableKey;
Stripe.merchantIdentifier = 'emailID';
await Stripe.instance.applySettings();
Initiate ...