@adyen/react-native
Version:
Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native
14 lines (13 loc) • 892 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.UNSUPPORTED_PAYMENT_METHOD_ERROR = exports.UNKNOWN_PAYMENT_METHOD_ERROR = exports.LINKING_ERROR = void 0;
var _reactNative = require("react-native");
const UNKNOWN_PAYMENT_METHOD_ERROR = exports.UNKNOWN_PAYMENT_METHOD_ERROR = 'Unknown payment method or native module. \n\n' + 'Make sure your paymentMethods response contains: ';
const UNSUPPORTED_PAYMENT_METHOD_ERROR = exports.UNSUPPORTED_PAYMENT_METHOD_ERROR = 'Unsupported payment method: ';
const LINKING_ERROR = exports.LINKING_ERROR = `The package '@adyen/react-native' doesn't seem to be linked. Make sure: \n\n` + _reactNative.Platform.select({
ios: "- You have run 'pod install'\n",
default: ''
}) + '- You rebuilt the app after installing the package\n' + '- You are not using Expo managed workflow\n';
//# sourceMappingURL=constants.js.map