
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
react-native-paysprint-onboarding
Advanced tools
This is a React Native module that provides a seamless integration of the Paysprint Onboarding SDK into your React Native Android applications.
This is a React Native module that provides a seamless integration of the Paysprint Onboarding SDK into your React Native Android applications.
For reference, you may check out the (Pay Sprint Onboarding Mobile SDK).
npm install react-native-paysprint-onboarding
.aar dependencyDownload the required .aar from the Pay Sprint Onboarding Mobile SDK Docs and place it in your app module:
android/app/libs/onboardinglib_live-release.aar
⚠️ Make sure the filename matches exactly, including extension and case.
.aar filesOpen your app module's android/app/build.gradle and ensure there is a repositories block.
flatDir line inside it:repositories {
google()
mavenCentral()
flatDir {
dirs 'libs' // <- This tells Gradle to look in android/app/libs for .aar files
}
}
repositories block does not exist, add the whole block above.Add the following line to your android/gradle.properties file in your project:
android.enableJetifier=true
✅ This tells Gradle to enable Jetifier, which is required for compatibility with the Paysprint SDK, as it still depends on the old Android Support libraries.
import { startPaysprintOnBoarding } from 'react-native-paysprint-onboarding';
// ...
startPaysprintOnBoarding(
partnerId, // string
partnerApiKey, // string
merchantCode, // string
merchantMobile, // string
firmName, // string
email, // string
lat, // string
lng, // string
pipe // string
)
.then((res) => {
console.log(res, 'Response');
})
.catch((e) => {
console.log(e, 'Error');
});
startPaysprintOnBoarding() Method Reponse
| Key | Type | Description |
|---|---|---|
| status | boolean | Indicates whether the onboarding was successful or not |
| response | number | Numeric code representing the response status |
| message | string | Message describing the result |
MIT
FAQs
This is a React Native module that provides a seamless integration of the Paysprint Onboarding SDK into your React Native Android applications.
The npm package react-native-paysprint-onboarding receives a total of 17 weekly downloads. As such, react-native-paysprint-onboarding popularity was classified as not popular.
We found that react-native-paysprint-onboarding demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.