"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; function _AppSigningOptIn() { const data = _interopRequireDefault(require("./google-play/AppSigningOptIn")); _AppSigningOptIn = function () { return data; }; return data; } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var _default = program => { program.command('opt-in-google-play-signing [project-dir]').description('Switch from the old method of signing APKs to the new App Signing by Google Play. The APK will be signed with an upload key and after uploading it to the store, app will be re-signed with the key from the original keystore.').asyncActionProjectDir(async projectDir => { const optInProcess = new (_AppSigningOptIn().default)(projectDir); await optInProcess.run(); }); }; exports.default = _default; //# sourceMappingURL=../__sourcemaps__/commands/opt-into-google-play-signing.js.map