react-native-my2c2p-sdk
v0.5.2
Published
React Native Bridge to 2c2p SDK
Downloads
117
Readme
react-native-my2c2p-sdk
Installation
$ npm install react-native-my2c2p-sdk --save
or
$ yarn add react-native-my2c2p-sdk
Automatic Linking
$ react-native link react-native-my2c2p-sdk
Manual Linking
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-my2c2p-sdk
and addRNMy2c2pSdk.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNMy2c2pSdk.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.wednesdaynight.rn2c2p.RNMy2c2pSdkPackage;
to the imports at the top of the file - Add
new RNMy2c2pSdkPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-my2c2p-sdk' project(':react-native-my2c2p-sdk').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-my2c2p-sdk/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-my2c2p-sdk')
Setup My2c2pSDK
iOS
Install via cocoa pods:
Add pod 'my2c2pSDK'
to the ios/Podfile and run pod install
.
Android
- Download My2c2pSDK library from https://s.2c2p.com/manuals/android/download/my2c2psdk.html.
Convert library to gradle module (See example)
and put into directory:
your-react-native-project/android/app/my2c2psdk
. - Append the following lines to
android/settings.gradle
:include ':my2c2psdk' project(':my2c2psdk').projectDir = new File(rootProject.projectDir, './app/my2c2psdk')
- Add activity to app AndroidManifest.xml
<activity android:name="com.ccpp.my2c2psdk.cores.My3DSActivity" android:theme="@style/My2c2pSDK.Theme" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <!-- For 123 payment : eNETS (Direct Debit/Web Payment) Only --> <!-- For demo server --> <data android:scheme="my2c2pjt" android:host="123" /> <!-- For demo server --> <data android:scheme="my2c2pjt01" android:host="123" /> <!-- For prod server --> <data android:scheme="my2c2p1001" android:host="123" /> <!-- End --> </intent-filter> </activity> <activity android:name="com.ccpp.my2c2psdk.cores.OTPActivity" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar"/>
Usage
import My2c2pSDK from 'react-native-my2c2p-sdk';
const privateKey = 'YOUR PRIVATE KEY';
const merchantID = 'YOUR MERCHANT ID';
const secretKey = 'YOUR SECRET KEY';
const productionMode = false;
My2c2pSDK.init(privateKey, productionMode);
try {
const params = {
merchantID: merchantID,
uniqueTransactionCode: '123456789',
desc: 'Test',
amount: 19.0,
currencyCode: '702',
cardHolderName: 'Luckyman',
cardHolderEmail: '[email protected]',
pan: '4111111111111111',
cardExpireMonth: 2,
cardExpireYear: 2019,
securityCode: '012',
panCountry: 'SG',
secretKey: secretKey
};
const response = await My2c2pSDK.requestPayment(params);
console.log(response);
} catch(error) {
console.log(error);
}
Example app:
https://github.com/oun/react-native-2c2p-example