Skip to content

Latest commit

 

History

History
92 lines (73 loc) · 2.44 KB

README.md

File metadata and controls

92 lines (73 loc) · 2.44 KB

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

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-supress-apple-pay 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-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");
    }
  });
}