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 fb9dd39Copy full SHA for fb9dd39
src/plugin.ts
@@ -205,7 +205,7 @@ class DevicePlugin extends BasePlugin {
205
registerProxyMiddlware(expressApp, cliArgs, externalModule.getMiddleWares());
206
207
externalModule.updateServer(expressApp, httpServer);
208
- if (hasEmulators && pluginArgs.platform.toLowerCase() === 'android') {
+ if (hasEmulators && (pluginArgs.platform.toLowerCase() === 'android' || pluginArgs.platform.toLowerCase() === 'both')) {
209
log.info('Emulators will be booted!!');
210
const adb = await enhancedADBManager.getLocalADB();
211
const array = pluginArgs.emulators || [];
0 commit comments