Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

yevheniionipko/react-native-ecom-portmone

Repository files navigation

React Native Ecom Portmone

Portmone eCommerce SDK

Usage

General description

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'
}

Install

$ yarn add react-native-ecom-portmone

Link

  • 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

import PortmoneSDK from 'react-native-ecom-portmone';

Portmone SDK

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);
}

About

Portmone eCommerce Android/IOS SDK for React Native

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published