Skip to content

Commit 195d52f

Browse files
Dileep17Dileep Bellamkonda
andauthored
Remove deviceName from android capabilities. (#437)
* Remove deviceName from android capabilities. * bump the version Co-authored-by: Dileep Bellamkonda <dileepbellamkonda@Dileeps-MacBook-Pro.local>
1 parent 1396a3d commit 195d52f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "appium-device-farm",
3-
"version": "1.0.0-beta.16",
3+
"version": "1.0.0-beta.17",
44
"description": "An appium 2.0 plugin that manages and create driver session on available devices",
55
"main": "./lib/index.js",
66
"scripts": {

src/CapabilityManager.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export async function androidCapabilities(
1212
freeDevice: { udid: any; name: string }
1313
) {
1414
caps.firstMatch[0]['appium:udid'] = freeDevice.udid;
15-
caps.firstMatch[0]['appium:deviceName'] = freeDevice.udid;
1615
caps.firstMatch[0]['appium:systemPort'] = await getPort();
1716
caps.firstMatch[0]['appium:chromeDriverPort'] = await getPort();
1817
if (!isCapabilityAlreadyPresent(caps, 'appium:mjpegServerPort')) {

0 commit comments

Comments
 (0)