
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
收银台 for React Native.
First, cd to your RN project directory, and install RNMK through rnpm . If you don't have rnpm, you can install RNMK from npm with the command npm i -S rnkit-pay and link it manually (see below).
rnpm install rnkit-pay
$npm install -S rnkit-pay
$react-native link rnkit-pay
node_modules/rnkit-pay/ios/RNKitPay.xcodeproj to your xcode project, usually under the Libraries grouplibRNKitPay.a (from Products under RNKitPay.xcodeproj) to build target's Linked Frameworks and Libraries listrnpm install rnkit-pay
$npm install -S rnkit-pay
$react-native link rnkit-pay
android/settings.gradle:include ':rnkit-pay'
project(':rnkit-pay').projectDir = new File(rootProject.projectDir, '../node_modules/rnkit-pay/android/app')
android/app/build.gradledependencies {
...
compile project(':rnkit-pay')
}
import io.rnkit.pay.RNKitPayPackage; and register it in your MainActivity (or equivalent, RN >= 0.32 MainApplication.java):@Override
protected List<ReactPackage> getPackages() {
return Arrays.asList(
new MainReactPackage(),
new RNKitPayPackage()
);
}
AndroidManifest.xml 添加如下内容<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<!-- LLYT SDK START -->
<activity
android:name="com.yintong.secure.activity.BaseActivity"
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:windowSoftInputMode="adjustResize"></activity>
<service android:name="com.yintong.secure.service.PayService"></service>
<!-- LLYT SDK END -->
Finally, you're good to go, feel free to require rnkit-pay in your JS files.
Have fun! :metal:
Import library
import RNKitPay from 'rnkit-pay';
try {
let result = await RNKitPay.pay('Verify', payInfo);
console.log(result);
} catch (error) {
console.log(error.message);
}
参数 payInfo 为服务端签名后的json字符串
Feel free to contact me or create an issue
made with ♥
FAQs
Payment for ReactNative
We found that rnkit-pay 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.