react-native-sumup-interface
v1.3.2
Published
Bridge to use the SumUp SDK
Downloads
7
Readme
react-native-sumup-interface
Getting started
$ npm install react-native-sumup-interface --save
$ react-native link react-native-sumup-interface
Installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-sumup-interface
and addReactSumUp.xcodeproj
- In XCode, in the project navigator, select your project. Add
libReactSumUp.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Please note that iOS is untested. Please feel free to contribute to the project if updates are required
Android
- Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import com.ami3go.sumupinterface.ReactSumUpModule;
to the imports at the top of the file - In the
onCreate()
method, addReactSumUpModule.initSumUp(this);
to the end
- Append the following lines to
android/settings.gradle
:include ':react-native-sumup-interface' project(':react-native-sumup-interface').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sumup-interface/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-sumup-interface')
Usage
import ReactSumUp from 'react-native-sumup-interface';
SumUpSDK.init('YOUR_API_KEY');
const sumUpSdk = new SumUpSDK();
To authenticate with a token (see https://developer.sumup.com/rest-api/#section/Authentication)...
await sumUpSdk.authenticateWithToken('YOUR_TOKEN_HERE');
To authenticate with SumUp credentials...
await sumUpSdk.authenticate();
To wake up the device...
await sumUpSdk.prepareForCheckout();
To begin the checkout process...
import { CurrencyCodes } from 'react-native-sumup-interface';
await sumUpSdk.checkout(
'ABC', /* the transaction title */
1.23, /* the transaction amount */);
// OPTIONAL FIELDS:
// currencyCode = CurrencyCodes.GBP (defaulted to GBP)
// foreignTransactionId = '' (foreign transaction ID, must be unique)
// token = null (authentication token. Only required if authentication hasn't already been done)