Midtrans payment gateway forked from 'https://github.com/aldente05/react-native-payment-gateway'
npm install react-native-midtrans-payment-gateway
$ npm install react-native-midtrans-payment-gateway --save
$ react-native link react-native-midtrans-payment-gateway
Libraries ➜ Add Files to [your project's name]
node_modules ➜ react-native-midtrans-payment-gateway and add ReactNativeMidtrans.xcodeproj
libReactNativeMidtrans.a to your project's Build Phases ➜ Link Binary With Libraries
Cmd+R)<
android/app/src/main/java/[...]/MainApplication.java
import com.paymentgateway.ReactNativeMidtransPackage; to the imports at the top of the file
new MidtransPackage() to the list returned by the getPackages() method
android/settings.gradle:
include ':react-native-midtrans-payment-gateway'
project(':react-native-midtrans-payment-gateway').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-midtrans-payment-gateway/android')
`
3. Insert the following lines inside the dependencies block in android/app/build.gradle:
`
compile project(':react-native-midtrans-payment-gateway')
`
4. Append midtrans repository to application level build.gradle
`
maven { url "http://dl.bintray.com/pt-midtrans/maven" }
maven { url "https://jitpack.io" }
`
Usage
`javascript
import PaymentGateway from 'react-native-midtrans-payment-gateway';
async pay(){
const optionConect = {
clientKey: "your client key",
urlMerchant: "https://domain.net/" <<-- will hit https://domain.net/charge,
sandbox : true <<-- it works for IOS only, change to false if use production
}
const transRequest = {
transactionId: "0001",
totalAmount: 4000
}
const itemDetails = [
{id: "001", price: 1000, qty: 4, name: "peanuts"}
];
const creditCardOptions = {
saveCard: false,
saveToken: false,
paymentMode: "Normal",
secure: false
};
const userDetail = {
fullName: "jhon",
email: "jhon@payment.com",
phoneNumber: "0850000000",
userId: "U01",
address: "street coffee",
city: "yogyakarta",
country: "IDN", <-- must be standard country code
zipCode: "59382"
};
const optionColorTheme = {
primary: '#c51f1f',
primaryDark: '#1a4794',
secondary: '#1fce38'
}
const optionFont = {
defaultText: "open_sans_regular.ttf",
semiBoldText: "open_sans_semibold.ttf",
boldText: "open_sans_bold.ttf"
}
const callback = (res) => {
console.log(res)
};
PaymentGateway.checkOut(
optionConect,
transRequest,
itemDetails,
creditCardOptions,
userDetail,
optionColorTheme,
optionFont,
callback
);
}
``