Skip to content

zaferatli/react-native-supress-apple-pay

Repository files navigation

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");
    }
  });
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published