@midscene/android 0.30.6-beta-20251021115636.0 → 0.30.6-beta-20251021121032.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/es/index.mjs CHANGED
@@ -106,7 +106,7 @@ class AndroidDevice {
106
106
  const key = param.keyName;
107
107
  if (Array.isArray(key)) {
108
108
  const keyToPress = key[key.length - 1];
109
- console.warn(`[Android] Key combinations are not supported. Using last key: "${keyToPress}"`, "Original input:", key);
109
+ console.warn(`[Android] Key combinations are not supported. Using last key: "${keyToPress}"`, 'Original input:', key);
110
110
  await this.keyboardPress(keyToPress);
111
111
  } else await this.keyboardPress(key);
112
112
  }),
package/dist/lib/index.js CHANGED
@@ -152,7 +152,7 @@ class AndroidDevice {
152
152
  const key = param.keyName;
153
153
  if (Array.isArray(key)) {
154
154
  const keyToPress = key[key.length - 1];
155
- console.warn(`[Android] Key combinations are not supported. Using last key: "${keyToPress}"`, "Original input:", key);
155
+ console.warn(`[Android] Key combinations are not supported. Using last key: "${keyToPress}"`, 'Original input:', key);
156
156
  await this.keyboardPress(keyToPress);
157
157
  } else await this.keyboardPress(key);
158
158
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@midscene/android",
3
- "version": "0.30.6-beta-20251021115636.0",
3
+ "version": "0.30.6-beta-20251021121032.0",
4
4
  "description": "Android automation library for Midscene",
5
5
  "keywords": [
6
6
  "Android UI automation",
@@ -27,8 +27,8 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "appium-adb": "12.12.1",
30
- "@midscene/shared": "0.30.6-beta-20251021115636.0",
31
- "@midscene/core": "0.30.6-beta-20251021115636.0"
30
+ "@midscene/core": "0.30.6-beta-20251021121032.0",
31
+ "@midscene/shared": "0.30.6-beta-20251021121032.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@rslib/core": "^0.11.2",
@@ -37,7 +37,7 @@
37
37
  "typescript": "^5.8.3",
38
38
  "tsx": "^4.19.2",
39
39
  "vitest": "3.0.5",
40
- "@midscene/playground": "0.30.6-beta-20251021115636.0"
40
+ "@midscene/playground": "0.30.6-beta-20251021121032.0"
41
41
  },
42
42
  "license": "MIT",
43
43
  "scripts": {