Portmone SDK supports version Android 4.4 KitKat, API level 19 and latest versions.
Integration
### build.gradle (project level)
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven {
url "https://github.com/Portmone/Android-e-Commerce-SDK/raw/master/"
}
}
}
### build.gradle (app level)
dependencies {
implementation 'com.portmone.ecomsdk:ecomsdk:1.3.3'
}
$ yarn add react-native-ecom-portmone
- React Native 0.60+
CLI autolink feature links the module while building the app.
- React Native <= 0.59
$ react-native link react-native-ecom-portmone
import PortmoneSDK from 'react-native-ecom-portmone';
import PortmoneSdk, { PaymentType } from 'react-native-ecom-portmone';
type Locale = 'uk' | 'ru' | 'en';
const locale: Locale = 'uk';
interface SavingCard {
token: string
}
const payeeId: string = 'Your payee id';
const phoneNumber: string = '681234567';
const amount: number = 10
const type: PaymentType = 'account';
const portmoneSdk = new PortmoneSdk(locale);
initPayWithoutSavingCard = () => {
portmoneSdk.initCardPayment(payeeId, phoneNumber, amount, type);
}
initSavingCard = async () => {
const result: SavingCard = await portmoneSdk.initCardSaving(payeeId);
}