@lazidog/expo-notification-extension
Version:
| [with FCM compatibility] The Expo Notification Service Extension plugin allows you to add a Notification Service Extension file while staying in the managed workflow.
22 lines (21 loc) • 1.4 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.APP_GROUP_KEY = exports.BUNDLE_VERSION_TEMPLATE_REGEX = exports.BUNDLE_SHORT_VERSION_TEMPLATE_REGEX = exports.GROUP_IDENTIFIER_TEMPLATE_REGEX = exports.DEFAULT_BUNDLE_SHORT_VERSION = exports.DEFAULT_BUNDLE_VERSION = exports.EXT_FILES = exports.HEADER_FILE = exports.SOURCE_FILE = exports.PLIST_FILE = exports.ENTITLEMENTS_FILE = exports.EXTENSION_FILES_PATH = exports.EXTENSION_NAME = void 0;
exports.EXTENSION_NAME = "NotificationService";
exports.EXTENSION_FILES_PATH = "node_modules/@lazidog/expo-notification-extension/build/extension-files";
exports.ENTITLEMENTS_FILE = "".concat(exports.EXTENSION_NAME, ".entitlements");
exports.PLIST_FILE = "".concat(exports.EXTENSION_NAME, "-Info.plist");
exports.SOURCE_FILE = "".concat(exports.EXTENSION_NAME, ".m");
exports.HEADER_FILE = "".concat(exports.EXTENSION_NAME, ".h");
exports.EXT_FILES = [
exports.ENTITLEMENTS_FILE,
exports.PLIST_FILE,
exports.SOURCE_FILE,
exports.HEADER_FILE,
];
exports.DEFAULT_BUNDLE_VERSION = "1";
exports.DEFAULT_BUNDLE_SHORT_VERSION = "1.0";
exports.GROUP_IDENTIFIER_TEMPLATE_REGEX = /{{GROUP_IDENTIFIER}}/gm;
exports.BUNDLE_SHORT_VERSION_TEMPLATE_REGEX = /{{BUNDLE_SHORT_VERSION}}/gm;
exports.BUNDLE_VERSION_TEMPLATE_REGEX = /{{BUNDLE_VERSION}}/gm;
exports.APP_GROUP_KEY = "com.apple.security.application-groups";