electron-deeplink
Version:
Node module for Electron apps that sets the default handler for a given protocol (deeplinks) in both development and production environments.
6 lines (5 loc) • 458 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.infoPlistTemplate = void 0;
var infoPlistTemplate = "\t<key>CFBundleURLTypes</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>CFBundleURLName</key>\n\t\t\t<string>{PROTOCOL}</string>\n\t\t\t<key>CFBundleURLSchemes</key>\n\t\t\t<array>\n\t\t\t\t<string>{PROTOCOL}</string>\n\t\t\t</array>\n\t\t</dict>\n\t</array>\n</dict>\n</plist>";
exports.infoPlistTemplate = infoPlistTemplate;