
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@adrianha/react-native-midtrans
Advanced tools
$ npm install @adrianha/react-native-midtrans --save
$ react-native link @adrianha/react-native-midtrans
pod 'ReactNativeMidtrans', :path => '../node_modules/@adrianha/react-native-midtrans'
on your Podfile
pod install
Cmd+R
)Libraries
➜ Add Files to [your project's name]
node_modules
➜ @adrianha/react-native-midtrans
and add ReactNativeMidtrans.xcodeproj
libReactNativeMidtrans.a
to your project's Build Phases
➜ Link Binary With Libraries
Cmd+R
)android/build.gradle
maven { url "http://dl.bintray.com/pt-midtrans/maven" }
on allproject.repositories
scopemaven { url "https://jitpack.io" }
on allproject.repositories
scopeandroid/app/src/main/java/[...]/MainApplication.java
import com.adrianha.midtrans.ReactNativeMidtransPackage;
to the imports at the top of the filenew ReactNativeMidtransPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':@adrianha/react-native-midtrans'
project(':@adrianha/react-native-midtrans').projectDir = new File(rootProject.projectDir, '../node_modules/@adrianha/react-native-midtrans/android')
android/app/build.gradle
:
implementation project(':@adrianha/react-native-midtrans')
import Midtrans from '@adrianha/react-native-midtrans';
const midtrans = new Midtrans({
clientKey: 'CLIENT_KEY',
baseUrl: 'BASE_URL',
/** iOS only: Midtrans.ENVIRONMENT_SANDBOX | Midtrans.ENVIRONMENT_PRODUCTION */
environment: Midtrans.ENVIRONMENT_SANDBOX,
/** android only */
colorTheme: {
primaryColor: '#000000',
},
});
try {
const result = await midtrans.startPaymentWithSnapToken('SNAP_TOKEN');
console.log({ result });
} catch (e) {
console.log(e);
}
FAQs
Unofficial Midtrans SDK for React Native
The npm package @adrianha/react-native-midtrans receives a total of 0 weekly downloads. As such, @adrianha/react-native-midtrans popularity was classified as not popular.
We found that @adrianha/react-native-midtrans demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.