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

@connexup/react-native-square-mobile-payment-sdk

v0.1.2

Published

Mobile Payments SDK for React Native

Readme

react-native-square-mobile-payment-sdk

Mobile Payments SDK for React Native

Review requirements

Before getting started, please review the Requirements and Limitations and Device Compatibility sections to ensure that the SDK can be used in your project:

Installation

yarn add react-native-square-mobile-payment-sdk

Before you start

  • You will need a Square account enabled for payment processing. If you have not enabled payment processing on your account (or you are not sure), visit squareup.com/activate.

  • Set-up your React Native environment by following the official guide.

    For iOS:

  1. Make sure you run pod install in the ios folder of the sample application to install the SDK and all the dependencies.
  2. On your application targets’ Build Phases settings tab, click the + icon and choose New Run Script Phase. Create a Run Script in which you specify your shell (ex: /bin/sh), and add the following contents to the script area below the shell:
SETUP_SCRIPT=${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}"/SquareMobilePaymentsSDK.framework/setup"
if [ -f "$SETUP_SCRIPT" ]; then
  "$SETUP_SCRIPT"
fi

Make sure this build phase is after any [CP] Embed Pods Frameworks or Embed Frameworks Build Phase.

For Android:

  1. Modify your /android/build.gradle Add maven { url 'https://sdk.squareup.com/public/android/' } inside the allprojects's repositories {...} block
  2. Disable Proguard by adding the following to your /android/app/build.gradle:
android {
    buildTypes {
        release {
            minifyEnabled false
            shrinkResources false
        }
    }
}

Documentation

Contributing

License

MIT


Made with create-react-native-library