1.0.0 • Published 5 years ago

react-native-pass-kit-helper v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

react-native-pass-kit-helper

Important!

This method requires a special entitlement issued by Apple. If the entitlement is not present, the request will fail. For more information, see Apple Developer - Apple Pay.

Getting started

$ npm install react-native-pass-kit-helper --save

Mostly automatic installation React-Native <0.60.0

$ react-native link react-native-pass-kit-helper

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-pass-kit-helper and add PassKitHelper.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libPassKitHelper.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Usage

import PassKitHelper from 'react-native-pass-kit-helper';

// to suppress apple pay

	if (Platform.OS === 'ios') {
		PassKitHelper.suppressApplePay();
	}

// to enable apple pay

 if (Platform.OS === 'ios') {
		PassKitHelper.enableApplePay();
	}