Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
react-native-customui
Advanced tools
React Native wrapper around our Android and iOS mobile SDKs
The following documentation is only focussed on the react-native wrapper around our Android and iOS sdks. To know more about our react-native SDK, refer to the following documentation -
https://razorpay.com/docs/payment-gateway/react-native-integration/
To know more about Razorpay payment flow and steps involved, read up here: https://docs.razorpay.com/docs
Using npm:
npm install --save react-native-customui
or using yarn:
yarn add react-native-customui
For Expo Users:
npx expo install react-native-customui
$ npm install react-native-customui --save
// Install the Razorpay React Native Custom UI SDK using the npm command.
react-native link react-native-customui
// Link the SDK with React Native Project using Xcode.
Drag the Razorpay.framework
file from the Libraries folder and drop it under the root folder, for more info follow this link,
after this go to Target > General Settings> Framework, Libraries and Embedded Content section, set the Embed status of Razorpay.framework to Embed & Sign.
Also make sure the razorpay framework is added in the embedded binaries section and you have Always Embed Swift Standard Binaries set to yes in build settings.
Add the following line to your build targets in your Podfile
pod 'react-native-customui', :path => '../node_modules/react-native-customui'
Then run pod install
In XCode, in the project navigator:
node_modules/react-native-customui
.xcodeproj
fileIn XCode, in the project navigator, select your project.
libRNDeviceInfo.a
from the deviceinfo project to your project's Build Phases ➜ Link Binary With Libraries.xcodeproj
file you added before in the project navigator and go the Build Settings tab. Make sure All is toggled on (instead of Basic).$(SRCROOT)/../react-native/React
and $(SRCROOT)/../../React
Run your project (Cmd+R)
android/app/src/main/java/[...]/MainApplication.java
import com.razorpay.rn.RazorpayPackage;
to the imports at the top of
the filenew RazorpayPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-razorpay'
project(':react-native-razorpay').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-customui/android')
android/app/build.gradle
:
implementation project(':react-native-customui')
After adding the react-native-razorpay package,the option to prebuild
the app must be used(this generates the android/ios platform folders in the project to use native-modules). Command for which,
npx expo prebuild
After which the application will be installed on the device/emulator.
npx expo run:[ios|android] --device
Sample code to integrate with Razorpay can be found in index.js in the included example directory.
To run the example, simply do the following in example directory and then link iOS SDK as explained in the previous section:
$ npm i
Import Razorpay module to your component:
import Razorpay from 'react-native-customui';
Call Razorpay.open
method with the payment options
. The method
returns a JS Promise where then
part corresponds to a successful payment
and the catch
part corresponds to payment failure.
<TouchableHighlight onPress={() => {
var options = {
description: 'Credits towards consultation',
currency: 'INR',
key_id: 'rzp_test_1DP5mmOlF5G5ag',
amount: '5000', // amount in currency subunits. Defaults to INR. 100 = 100 paise = INR 1.
email: 'void@razorpay.com',
contact: '9999999123',
method: 'netbanking',
bank: 'HDFC'
}
Razorpay.open(options).then((data) => {
// handle success
alert(`Success: ${data.razorpay_payment_id}`);
}).catch((error) => {
// handle failure
alert(`Error: ${error.code} | ${error.description}`);
});
}}>
For using UPI Intent flow in Razorpay's React Native Custom UI plugin, you have to follow below steps.
Call getAppsWhichSupportUPI function for getting all the available apps in users phone.
Razorpay.getAppsWhichSupportUPI((data) => {
console.log("Supported Apps",data);
});
Ensure that the upi_app_package_name
is passed from the getSupportedUPIApps()
method value. Otherwise, it will not pass the validation.
var options = {
description: 'Credits towards consultation',
currency: 'INR',
key_id: 'rzp_test_1DP5mmOlF5G5ag',
amount: '5000', // amount in currency subunits. Defaults to INR. 100 = 100 paise = INR 1.
email: 'void@razorpay.com',
contact: '9999999123',
method: 'upi',
upi_app_package_name : "google_pay",
'_[flow]' : "intent"
}
Your iOS app must seek permission from the device to open the UPI PSP app that the customer selects on the Checkout. For this, you must make the following changes in your iOS app's info.plist file.
<key>LSApplicationQueriesSchemes</key>
<array>
<string>tez</string>
<string>phonepe</string>
<string>paytmmp</string>
</array>
A descriptive list of valid options for customui options is available here.
react-native-customui is Copyright (c) 2021 Razorpay Software Pvt. Ltd. It is distributed under the MIT License.
We ♥ open source software! See our other supported plugins / SDKs or contact us to help you with integrations.
FAQs
React Native wrapper for Razorpay SDK
The npm package react-native-customui receives a total of 1,226 weekly downloads. As such, react-native-customui popularity was classified as popular.
We found that react-native-customui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.