Reputation: 9
I'm working on a healthcare tech solution using .NET MAUI and looking to integrate Stripe's Tap to Pay SDK into the project. I'm seeking guidance or documentation on the steps required for this integration.
Specifically, I aim to implement Tap to Pay functionality within the healthcare application developed in .NET MAUI. I've reviewed Stripe's documentation but haven't found explicit instructions for .NET MAUI.
Could anyone provide guidance, step-by-step instructions, or relevant resources on integrating Stripe's Tap to Pay SDK with a .NET MAUI application?
Upvotes: 0
Views: 715
Reputation: 3
There's no direct support from Stripe for Net MAUI but you can create a binding projects for android and iOS Stripe SDKs.
For reference on how to do native library bindings
Upvotes: 0
Reputation: 7459
First I'm hearing of it, but it looks like .NET MAUI is a cross-platform development pattern similar (in concept) to React Native.
Stripe Tap to Pay (docs) support iOS and Android via Stripe's SDKs, so you'll need to determine if/how MAUI supports you setting up bridges to those SDKs to enable the functionality.
Upvotes: 0