npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-native-paysprint-onboarding

v1.0.12

Published

This is a React Native module that provides a seamless integration of the Paysprint Onboarding SDK into your React Native Android applications.

Readme

react-native-paysprint-onboarding

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).

Installation


npm  install  react-native-paysprint-onboarding

Android Setup

1. Add .aar dependency

Download 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.

2. Configure Gradle to include local .aar files

Open your app module's android/app/build.gradle and ensure there is a repositories block.

  • If it exists, add the flatDir line inside it:
repositories {
    google()
    mavenCentral()
    flatDir {
        dirs 'libs'  // <- This tells Gradle to look in android/app/libs for .aar files
    }
}
  • If the repositories block does not exist, add the whole block above.

3. Update gradle.properties

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.

Usage

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');
  });

Response JSON Object

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 |

Contributing

License

MIT