Rename ClientDevice to DummyDevice

Summary: Rename ClientDevice to DummyDevice. It is being currently used in the case when we do cert exchange through WWW/Distillery. In this mode we are not able to figure out the exact device id(instead we create a fake one) and thus we would not like to use Android or IOSDevice for such cases.

Reviewed By: mweststrate

Differential Revision: D26944415

fbshipit-source-id: f9f76e8997cf5402ba5627ae1959f5a11e078bb1
This commit is contained in:
Pritesh Nandgaonkar
2021-03-10 06:32:18 -08:00
committed by Facebook GitHub Bot
parent d12501677d
commit 60994bd41f
5 changed files with 26 additions and 23 deletions

View File

@@ -58,9 +58,9 @@
"enum": ["iOS", "Android", "Metro"]
},
"type": {
"description": "Device type: physical or emulator. Lack of this property means both physical and emulator devices supported.",
"description": "Device type: physical or emulator or dummy. Lack of this property means it supports physical, emulator and dummy devices.",
"type": "string",
"enum": ["physical", "emulator"]
"enum": ["physical", "emulator", "dummy"]
},
"archived": {
"description": "Specifies support for archived devices. Lack of this property means that both live and archived devices supported. False means only live devices supported. True means only archived devices supported.",
@@ -84,6 +84,6 @@
"id",
"main",
"flipperBundlerEntry",
"keywords"
"keywords"
]
}