We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2b2b5a commit 12b33cbCopy full SHA for 12b33cb
src/plugin.ts
@@ -205,7 +205,11 @@ class DevicePlugin extends BasePlugin {
205
registerProxyMiddlware(expressApp, cliArgs, externalModule.getMiddleWares());
206
207
externalModule.updateServer(expressApp, httpServer);
208
- if (hasEmulators && pluginArgs.platform.toLowerCase() === 'android') {
+ if (
209
+ hasEmulators &&
210
+ (pluginArgs.platform.toLowerCase() === 'android' ||
211
+ pluginArgs.platform.toLowerCase() === 'both')
212
+ ) {
213
log.info('Emulators will be booted!!');
214
const adb = await enhancedADBManager.getLocalADB();
215
const array = pluginArgs.emulators || [];
0 commit comments