Socket
Socket
Sign inDemoInstall

react-native-mpos-native

Package Overview
Dependencies
Maintainers
11
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-mpos-native

Library to use Pinpad/MPOS Bluetooth for react native


Version published
Weekly downloads
21
decreased by-4.55%
Maintainers
11
Weekly downloads
 
Created
Source

Getting started

First, you need to clone the repo and install dependencies:

$ yarn add react-native-mpos-native
$ react-native link react-native-mpos-native

Android setup

You must confirm that ./android/build.gradle has the following configuration:

allProjects {
  repositories {
	  // ...
	  maven {
	    url "https://dl.bintray.com/vivareal/maven"
	  }
	  flatDir {
	    dirs "$rootDir/../node_modules/react-native-mpos-native/android/libs"
	  }
  }
}

Then inside of ./android/app/build.gradle add:

dependencies {
  // ...
  implementation 'br.com.vivareal:cuid-android:0.1.0'
}

Then inside of ./android/app/src/main/AndroidManifest.xml add:

xmlns:tools="http://schemas.android.com/tools" tools:replace="android:allowBackup"

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  package="com.package">

	<application 
	  ...
      android:allowBackup="false"
      tools:replace="android:allowBackup"
	>
	</application>
</manifest>

Then inside of ./android/app create a folder libs if not exists. Copy files: mpos-android.native.jar and mpos-android.aar from /appFolder/node_modules/react-native-mpos-native/android/libs/

Rebuild project

iOS

  1. Required iOS 10.3 or later.

  2. Install Pods.

$ cd ios/
$ pod install
  1. Open your iOS project workspace on XCode.

  2. Add MposSDK.framework and Result.framework in Frameworks, Libraries, and Embedded Content. Use the node_modules reference ./node_modules/react-native-mpos-native/ios/libs to drag to the project.

  3. Add "$(SRCROOT)/../node_modules/react-native-mpos-native/ios/libs" in Build Settings > Framework Search Paths.

  4. Set Enable Bitcode to No.

Basic Usage

Pinpad/Mpos

The simplest usage was 'quite' documented on https://github.com/pagarme/pinpadRNExample/blob/master/src/screens/DeviceDetails/index.js

Bluetooth

The simplest usage was 'quite' documented on https://github.com/pagarme/pinpadRNExample/blob/master/src/screens/BluetoothDevices/index.js

Example

Example of use https://github.com/pagarme/pinpadRNExample

To run the example:

$ yarn

Android

$ yarn run android

iOS

$ cd ios/
$ pod install
$ cd ..
$ yarn run ios

Keywords

FAQs

Package last updated on 26 Apr 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc