Getting started
npm i @network-international/react-native-ngenius
Note for iOS projectsIf your project is using iOS deployment target 10, you need to increase it to 11.
In order to upgrade the versions do the following changes
- Change the iOS deployment version in
your-project/ios/Podfileas followsplatform :ios, '11.0'- Open the
.xcworkspacefileinside the following directoryyour-project/ios/yourproject.xcworkspaceand change the deployment target to 11.0.
Card payment example
import { initiateCardPayment } from '@network-international/react-native-ngenius';
// order is the order response received from NGenius create order API
const makeCardPayment = async () => {
try {
const resp = await initiateCardPayment(order);
} catch (err) {
console.log({ err });
}
};Samsung Pay example
import { initiateSamsungPay } from '@network-international/react-native-ngenius';
// order is the order response received from NGenius create order API
// merchantName is the name of merchant's establishment
// serviceId is the serviceId that is generated in the Samsung Pay developer portal
const makeSamsungPayPayment = async () => {
try {
const resp = await initiateSamsungPay(order, merchantName, serviceId);
} catch (err) {
console.log({ err });
}
};Apple Pay example
import { initiateApplePay } from '@network-international/react-native-ngenius';
// order is the order response received from NGenius create order API
// mid is the merchant ID that is generated in the Apple developer portal
// countryCode is the country code of the transaction country Eg: AE for UAE
const makeApplePayPayment = async () => {
try {
const resp = await initiateApplePay(order, mid, countryCode);
} catch (err) {
console.log({ err });
}
};Configure SDK language
import { configureSDK } from '@network-international/react-native-ngenius';
configureSDK({
language: isEnglish ? 'en' : 'ar'
});Configure SDK to show order amount
import { configureSDK } from '@network-international/react-native-ngenius';
configureSDK({
shouldShowOrderAmount: true
});Check if Samsung Pay is enabled
import { isSamsungPaySupported } from '@network-international/react-native-ngenius';
const isSamsungPayEnabled = await isSamsungPaySupported();Check if Apple Pay is enabled
import { isApplePaySupported } from '@network-international/react-native-ngenius';
const isApplePayEnabled = await isApplePaySupported();Features supported in the SDK
| Feature | Android support | iOS support |
|---|---|---|
| initiateCardPayment | :white-check-mark: | :white-check-mark: |
| initiateSamsungPay | :white-check-mark: | :no-entry-sign: |
| initiateApplePay | :no-entry-sign: | :white-check-mark: |
| configureSDK - shouldShowOrderAmount | :white-check-mark: | :no-entry-sign: |
| configureSDK - language | :no-entry-sign: | :white-check-mark: |
