react-native-pass-kit-helper
v1.0.0
Published
Suppress apple pay in React-Native
Downloads
3
Readme
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
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-pass-kit-helper
and addPassKitHelper.xcodeproj
- In XCode, in the project navigator, select your project. Add
libPassKitHelper.a
to your project'sBuild Phases
➜Link Binary With Libraries
- 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();
}