@sqaitech/android 0.30.14 → 0.30.15
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 +2 -2
- package/dist/lib/index.js +2 -2
- package/package.json +4 -4
package/dist/es/index.mjs
CHANGED
|
@@ -241,7 +241,7 @@ ${Object.keys(size).filter((key)=>size[key]).map((key)=>` ${key} size: ${size[k
|
|
|
241
241
|
const methodName = String(prop);
|
|
242
242
|
const deviceId = this.deviceId;
|
|
243
243
|
debugDevice(`ADB error with device ${deviceId} when calling ${methodName}: ${error}`);
|
|
244
|
-
throw new Error(`ADB error with device ${deviceId} when calling ${methodName}, please check https://
|
|
244
|
+
throw new Error(`ADB error with device ${deviceId} when calling ${methodName}, please check https://sqai.tech/integrate-with-android.html#faq : ${error.message}`, {
|
|
245
245
|
cause: error
|
|
246
246
|
});
|
|
247
247
|
}
|
|
@@ -956,7 +956,7 @@ async function getConnectedDevices() {
|
|
|
956
956
|
return devices;
|
|
957
957
|
} catch (error) {
|
|
958
958
|
console.error('Failed to get device list:', error);
|
|
959
|
-
throw new Error(`Unable to get connected Android device list, please check https://
|
|
959
|
+
throw new Error(`Unable to get connected Android device list, please check https://sqai.tech/integrate-with-android.html#faq : ${error.message}`, {
|
|
960
960
|
cause: error
|
|
961
961
|
});
|
|
962
962
|
}
|
package/dist/lib/index.js
CHANGED
|
@@ -287,7 +287,7 @@ ${Object.keys(size).filter((key)=>size[key]).map((key)=>` ${key} size: ${size[k
|
|
|
287
287
|
const methodName = String(prop);
|
|
288
288
|
const deviceId = this.deviceId;
|
|
289
289
|
debugDevice(`ADB error with device ${deviceId} when calling ${methodName}: ${error}`);
|
|
290
|
-
throw new Error(`ADB error with device ${deviceId} when calling ${methodName}, please check https://
|
|
290
|
+
throw new Error(`ADB error with device ${deviceId} when calling ${methodName}, please check https://sqai.tech/integrate-with-android.html#faq : ${error.message}`, {
|
|
291
291
|
cause: error
|
|
292
292
|
});
|
|
293
293
|
}
|
|
@@ -1003,7 +1003,7 @@ async function getConnectedDevices() {
|
|
|
1003
1003
|
return devices;
|
|
1004
1004
|
} catch (error) {
|
|
1005
1005
|
console.error('Failed to get device list:', error);
|
|
1006
|
-
throw new Error(`Unable to get connected Android device list, please check https://
|
|
1006
|
+
throw new Error(`Unable to get connected Android device list, please check https://sqai.tech/integrate-with-android.html#faq : ${error.message}`, {
|
|
1007
1007
|
cause: error
|
|
1008
1008
|
});
|
|
1009
1009
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sqaitech/android",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.15",
|
|
4
4
|
"description": "Android automation library for SQAI",
|
|
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
|
-
"@sqaitech/core": "0.30.
|
|
31
|
-
"@sqaitech/shared": "0.30.
|
|
30
|
+
"@sqaitech/core": "0.30.15",
|
|
31
|
+
"@sqaitech/shared": "0.30.15"
|
|
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
|
-
"@sqaitech/playground": "0.30.
|
|
40
|
+
"@sqaitech/playground": "0.30.15"
|
|
41
41
|
},
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"scripts": {
|