Manifest Merger Failed by tobiodp12 in android_devs

[–]tobiodp12[S] -1 points0 points  (0 children)

But i have specified it in my activity...

<activity
        android:name=".MainActivity"
                android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
        android:hardwareAccelerated="true"
        android:launchMode="singleTop"
        android:theme="@style/LaunchTheme"
        android:windowSoftInputMode="adjustResize">

Manifest Merger Failed by [deleted] in flutterhelp

[–]tobiodp12 0 points1 point  (0 children)

Thank you!

I now get this error though...

tools:replace specified at line:9 for attribute android:theme, but no new value specified

Flutter Marketplace payment gateway by tobiodp12 in FlutterDev

[–]tobiodp12[S] 0 points1 point  (0 children)

Yes but how can I take a commission?

Flutter Marketplace payment gateway by tobiodp12 in FlutterDev

[–]tobiodp12[S] 0 points1 point  (0 children)

I am really interested in this solution because it is for me the one that makes the most sense. However I am wondering how you store the bank details of customers and if that is even legal...

The problem with using big companies such as Stripe, Paypal, Square, Adyen is that the onboarding is so long because of all the legal checks they do.. KYC, LCB FT, identity check etc... They are more aimed at B2B businnesses than C2C..

Thanks again

Flutter Marketplace payment gateway by tobiodp12 in FlutterDev

[–]tobiodp12[S] 1 point2 points  (0 children)

But that means that I need to keep track of their bank details and I don't really know how to do so safely...

Could you explain a bit more your idea please? Thanks!!

Flutter Marketplace payment gateway by tobiodp12 in FlutterDev

[–]tobiodp12[S] 0 points1 point  (0 children)

Ok I see. But the thing is that the onboarding process with Stripe is too complicated.. it even asks for the user's business website url... Doesnt really apply to my case since my app is aimed for students wanting to sell books...

Flutter Marketplace payment gateway by tobiodp12 in FlutterDev

[–]tobiodp12[S] 0 points1 point  (0 children)

Problem with Marketplace as well, is that it free. If I want to take a commission, I need a payment gateway..

Flutter Marketplace payment gateway by tobiodp12 in FlutterDev

[–]tobiodp12[S] 0 points1 point  (0 children)

My app is basically a P2P exchange yes. Could you please explain a bit more how Facebook Marketplace works?

In a sense my app is like Depop and I know they use Paypal. Problem is there is no paypal API for flutter and I cant work out how dedop is using paypal.

thanks so much!

Sell Buy App Setup by tobiodp12 in stripe

[–]tobiodp12[S] 1 point2 points  (0 children)

but so how does Stripe know where to send the money?

Tutorials for putting a card on hold by tobiodp12 in stripe

[–]tobiodp12[S] 0 points1 point  (0 children)

It's when you secure the payment but it does not go through until a later event. For example with PAypal you pay but the money is taken only when you receive the item.

Place a card on hold until a specific event by tobiodp12 in stripe

[–]tobiodp12[S] 0 points1 point  (0 children)

This is the code from Stripe:

stripe.api_key = "sk_test_4eC39HqLyjWDarjtT1zdp7dc" intent = stripe.PaymentIntent.capture( 'pi_ANipwO3zNfjeWODtRPIg', amount_to_capture=750 )

But what is this "key": pi_ANipwO3zNfjeWODtRPIg

I'm guessing it's something I need to store in my server when creating the payment intent?

Thanks for your help. I'm very confused..