Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mobile application payment gateway for Ukraine

I'm developing the application on Flutter(dart) where users should be able to receive payments for some services. For example, user A offers service and user B should be able to pay for this service by a payment card. All users are from Ukraine.

I thought to use stripe gateway and there is Flutter library for this. But my understanding is that stripe does not work with Ukraine. Users are able to pay but they are not allowed to receive payments. Am I right?

What should I do? Should I look for another payment gateway that works with Ukraine?

like image 775
user1209304 Avatar asked Apr 05 '21 17:04

user1209304


People also ask

What payment apps work in Ukraine?

After analyzing thousands of data points globally over a one-year period (from March 2021 to March 2022), Monito has found that the cheapest ways to send money to Ukraine have been through Wise, Paysend, MoneyGram, Skrill, TransferGo, and Azimo.

Is Shopify free for Ukraine?

For the foreseeable future, Shopify will not collect fees from our Ukrainian merchants and partners. With millions of Ukrainian refugees in desperate need of support, we will contribute funds to provide humanitarian aid through our partner Flexport.

What is the most powerful payment gateway for mobile apps?

Mobile payment gateway apps are safe methods for a mobile user to top up their account and buy your goods or services. And in this insightful post, we’ll get down to the most powerful and reliable payment gateway for mobile apps. Here we go! 1. PayPal - Best Payment Gateway for Mobile Apps

How does a mobile app accept payments?

With its help, the mobile app transmits purchase data to the receiving bank, and then to the payment system and the sending bank that issued the buyer’s card. Usually SDKs are available for iOS and Android, and the function of accepting payments can be integrated both at the mobile app development stage and into the finished product.

What is a payment gateway and how does it work?

The payment gateway is responsible for the transfer of payment data between the buyer, the sending bank, the receiving bank, the payment system and the seller. There are quite a lot of payment gateways, but not all of them are universal enough to be able to use them for products that are targeted at the entire world.

Is it safe to add a payment gateway to an Android app?

However, owners of e-commercial projects from the European Union, as well as such countries as New Zealand, Australia, Macau, Hong Kong, Singapore, can safely add a payment gateway to the Android app using this very solution. Convenient account management, including statistics collection, reporting, and analysis


Video Answer


1 Answers

Option 1:

Use PayPal PayPal flutter integration

Option 2:

Look for a bank (Ukrainian Bank) that provides SDK for flutter or API to do the payment. If SDK is not available but API is you can modify the guide provided above to achieve the payment infrastructure.

Option 3:*

Accept payment from Stripe and use your local bank to transfer money from your account to the recipient.

In that way, all the payment will go to your/your company's bank account(Ukraine bank account) from Stripe. For payouts, you can use the banks API to send the payment to the recipient directly from your bank account without the help of stripe to send the money to the recipient.

or Receive the payout request and process the payment manually (not recommended)

like image 138
Nishuthan S Avatar answered Sep 28 '22 00:09

Nishuthan S