Update the device plugins supported devices arguments

Summary:
Device plugins won't work for DummyDevice type as the device id is a fake one for this.

This diff updates the "supportedDevices" for the plugins.

Reviewed By: mweststrate

Differential Revision: D26944601

fbshipit-source-id: a29acc288f8f0c564f52db02914e7b0491b211d2
This commit is contained in:
Pritesh Nandgaonkar
2021-03-10 06:32:18 -08:00
committed by Facebook GitHub Bot
parent 60994bd41f
commit 50f31f9fe0
3 changed files with 32 additions and 2 deletions

View File

@@ -4,7 +4,8 @@
"id": "CrashReporter",
"pluginType": "device",
"supportedDevices": [
{"os": "Android"},
{"os": "Android", "type": "emulator"},
{"os": "Android", "type": "physical"},
{"os": "iOS", "type": "emulator"}
],
"version": "0.0.0",

View File

@@ -4,7 +4,8 @@
"id": "DeviceLogs",
"pluginType": "device",
"supportedDevices": [
{"os": "Android"},
{"os": "Android", "type": "emulator"},
{"os": "Android", "type": "physical"},
{"os": "iOS", "type": "emulator"},
{"os": "Metro"}
],