1f1bb9346SEvan Bacon"use strict";
2f1bb9346SEvan Baconvar __importDefault = (this && this.__importDefault) || function (mod) {
3f1bb9346SEvan Bacon    return (mod && mod.__esModule) ? mod : { "default": mod };
4f1bb9346SEvan Bacon};
5f1bb9346SEvan BaconObject.defineProperty(exports, "__esModule", { value: true });
6f1bb9346SEvan Baconconst config_plugins_1 = require("@expo/config-plugins");
7f1bb9346SEvan Bacon// @ts-expect-error missing types
8f1bb9346SEvan Baconconst app_plugin_1 = __importDefault(require("expo-dev-launcher/app.plugin"));
9f1bb9346SEvan Bacon// @ts-expect-error missing types
10f1bb9346SEvan Baconconst app_plugin_2 = __importDefault(require("expo-dev-menu/app.plugin"));
11f1bb9346SEvan Baconconst withGeneratedAndroidScheme_1 = require("./withGeneratedAndroidScheme");
12f1bb9346SEvan Baconconst withGeneratedIosScheme_1 = require("./withGeneratedIosScheme");
13f1bb9346SEvan Baconconst pkg = require('expo-dev-client/package.json');
14*04e66b12SGabriel Donadel Dall'Agnolfunction withDevClient(config, props) {
15f1bb9346SEvan Bacon    config = (0, app_plugin_2.default)(config);
16*04e66b12SGabriel Donadel Dall'Agnol    config = (0, app_plugin_1.default)(config, props);
17f1bb9346SEvan Bacon    config = (0, withGeneratedAndroidScheme_1.withGeneratedAndroidScheme)(config);
18f1bb9346SEvan Bacon    config = (0, withGeneratedIosScheme_1.withGeneratedIosScheme)(config);
19f1bb9346SEvan Bacon    return config;
20f1bb9346SEvan Bacon}
21f1bb9346SEvan Baconexports.default = (0, config_plugins_1.createRunOncePlugin)(withDevClient, pkg.name, pkg.version);
22