react-native-supress-apple-pay
v1.0.0
Published
Suppress apple pay in React-Native
Downloads
3
Readme
react-native-supress-apple-pay
Important!
Before to use this library you should add Apple Pay Pass Kit Supress capability and this is given by Apple, first of all you need to send email to
[email protected] [email protected]
include the reason of supress and these informations
Company: {{COMPANY NAME}} Team ID: {{TEAM_ID}} Apple ID: {{APPLE_ID}} Application ID: {{BUNDLE_ID}}
when they approve your application you will be able add Supress Apple Pay capability and our library.
Getting started
$ yarn add react-native-supress-apple-pay
Mostly automatic installation React-Native <0.60.0
$ react-native link react-native-supress-apple-pay
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-supress-apple-pay
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-supress-apple-pay";
// to suppress apple pay
if (Platform.OS === "ios") {
PassKitHelper.suppressApplePay((result) => {
switch (result) {
case 0:
console.log(
"Apple pay automatic presentation suppression not supported"
);
break;
case 1:
console.log("Apple pay automatic presentation already suppressed");
break;
case 2:
console.log("Apple pay automatic presentation suppression denied");
break;
case 3:
console.log("Apple pay automatic presentation suppression cancelled");
break;
case 4:
console.log("Apple pay automatic presentation suppressed successfully");
break;
default:
console.log("Unknown result");
}
});
}
// to enable apple pay
if (Platform.OS === "ios") {
PassKitHelper.enableApplePay((result) => {
switch (result) {
case 0:
console.log("iOS level under 9 (not supported)");
break;
case 1:
console.log("Apple pay presentation already enabled");
break;
case 2:
console.log("Apple pay not supported");
break;
case 3:
console.log("Apple pay automatic presentation activated");
break;
default:
console.log("Unknown result");
}
});
}