appium-adb 12.7.3 → 12.8.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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/build/index.d.ts +13 -3
- package/build/index.d.ts.map +1 -1
- package/build/index.js +7 -1
- package/build/index.js.map +1 -1
- package/build/lib/adb.d.ts +314 -6
- package/build/lib/adb.d.ts.map +1 -1
- package/build/lib/adb.js +237 -9
- package/build/lib/adb.js.map +1 -1
- package/build/lib/helpers.d.ts +179 -188
- package/build/lib/helpers.d.ts.map +1 -1
- package/build/lib/helpers.js +58 -35
- package/build/lib/helpers.js.map +1 -1
- package/build/lib/logcat.d.ts +32 -32
- package/build/lib/logcat.d.ts.map +1 -1
- package/build/lib/logcat.js +2 -0
- package/build/lib/logcat.js.map +1 -1
- package/build/lib/options.d.ts +1 -1
- package/build/lib/options.d.ts.map +1 -1
- package/build/lib/tools/aab-utils.d.ts +30 -34
- package/build/lib/tools/aab-utils.d.ts.map +1 -1
- package/build/lib/tools/aab-utils.js +4 -8
- package/build/lib/tools/aab-utils.js.map +1 -1
- package/build/lib/tools/adb-commands.d.ts +1050 -1015
- package/build/lib/tools/adb-commands.d.ts.map +1 -1
- package/build/lib/tools/adb-commands.js +321 -221
- package/build/lib/tools/adb-commands.js.map +1 -1
- package/build/lib/tools/adb-emu-commands.d.ts +216 -219
- package/build/lib/tools/adb-emu-commands.d.ts.map +1 -1
- package/build/lib/tools/adb-emu-commands.js +111 -65
- package/build/lib/tools/adb-emu-commands.js.map +1 -1
- package/build/lib/tools/android-manifest.d.ts +69 -73
- package/build/lib/tools/android-manifest.d.ts.map +1 -1
- package/build/lib/tools/android-manifest.js +19 -18
- package/build/lib/tools/android-manifest.js.map +1 -1
- package/build/lib/tools/apk-signing.d.ts +82 -86
- package/build/lib/tools/apk-signing.d.ts.map +1 -1
- package/build/lib/tools/apk-signing.js +23 -21
- package/build/lib/tools/apk-signing.js.map +1 -1
- package/build/lib/tools/apk-utils.d.ts +361 -343
- package/build/lib/tools/apk-utils.d.ts.map +1 -1
- package/build/lib/tools/apk-utils.js +124 -74
- package/build/lib/tools/apk-utils.js.map +1 -1
- package/build/lib/tools/apks-utils.d.ts +92 -96
- package/build/lib/tools/apks-utils.d.ts.map +1 -1
- package/build/lib/tools/apks-utils.js +22 -20
- package/build/lib/tools/apks-utils.js.map +1 -1
- package/build/lib/tools/keyboard-commands.d.ts +23 -27
- package/build/lib/tools/keyboard-commands.d.ts.map +1 -1
- package/build/lib/tools/keyboard-commands.js +9 -10
- package/build/lib/tools/keyboard-commands.js.map +1 -1
- package/build/lib/tools/lockmgmt.d.ts +84 -85
- package/build/lib/tools/lockmgmt.d.ts.map +1 -1
- package/build/lib/tools/lockmgmt.js +25 -22
- package/build/lib/tools/lockmgmt.js.map +1 -1
- package/build/lib/tools/system-calls.d.ts +514 -449
- package/build/lib/tools/system-calls.d.ts.map +1 -1
- package/build/lib/tools/system-calls.js +162 -109
- package/build/lib/tools/system-calls.js.map +1 -1
- package/index.ts +17 -4
- package/lib/adb.ts +277 -9
- package/lib/helpers.js +40 -53
- package/lib/logcat.js +2 -2
- package/lib/options.ts +1 -1
- package/lib/tools/aab-utils.js +3 -11
- package/lib/tools/adb-commands.js +215 -223
- package/lib/tools/adb-emu-commands.js +59 -68
- package/lib/tools/android-manifest.js +13 -21
- package/lib/tools/apk-signing.js +16 -25
- package/lib/tools/apk-utils.js +53 -62
- package/lib/tools/apks-utils.js +15 -24
- package/lib/tools/keyboard-commands.js +3 -11
- package/lib/tools/lockmgmt.js +17 -25
- package/lib/tools/system-calls.js +91 -110
- package/package.json +3 -3
- package/build/lib/mixins.d.ts +0 -13
- package/build/lib/mixins.d.ts.map +0 -1
- package/build/lib/mixins.js +0 -9
- package/build/lib/mixins.js.map +0 -1
- package/build/lib/tools/index.d.ts +0 -20
- package/build/lib/tools/index.d.ts.map +0 -1
- package/build/lib/tools/index.js +0 -58
- package/build/lib/tools/index.js.map +0 -1
- package/lib/mixins.ts +0 -36
- package/lib/tools/index.ts +0 -43
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [12.8.0](https://github.com/appium/appium-adb/compare/v12.7.4...v12.8.0) (2025-01-05)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* Bump Eslint ([#781](https://github.com/appium/appium-adb/issues/781)) ([9613100](https://github.com/appium/appium-adb/commit/9613100d8c038e77041ef36d5b3fc88d2c70c0f6))
|
|
6
|
+
|
|
7
|
+
## [12.7.4](https://github.com/appium/appium-adb/compare/v12.7.3...v12.7.4) (2024-12-12)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* Replace occurrences of the deprecated errorAndThrow API ([#777](https://github.com/appium/appium-adb/issues/777)) ([17aa093](https://github.com/appium/appium-adb/commit/17aa0939c81f530274f2fc6bf528e3d714d2b1d0))
|
|
12
|
+
|
|
1
13
|
## [12.7.3](https://github.com/appium/appium-adb/compare/v12.7.2...v12.7.3) (2024-12-10)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/README.md
CHANGED
package/build/index.d.ts
CHANGED
|
@@ -3,11 +3,21 @@
|
|
|
3
3
|
* files; otherwise we would need to copy `@typedef`s around.
|
|
4
4
|
* @module
|
|
5
5
|
*/
|
|
6
|
-
import { ADB } from './lib/adb';
|
|
7
6
|
export * from './lib/adb';
|
|
8
|
-
export
|
|
9
|
-
export
|
|
7
|
+
export { getAndroidBinaryPath } from './lib/tools/system-calls';
|
|
8
|
+
export { getSdkRootFromEnv } from './lib/helpers';
|
|
10
9
|
export type * from './lib/logcat';
|
|
11
10
|
export type * from './lib/options';
|
|
11
|
+
export type * from './lib/tools/adb-commands';
|
|
12
|
+
export type * from './lib/tools/system-calls';
|
|
13
|
+
export type * from './lib/tools/adb-emu-commands';
|
|
14
|
+
export type * from './lib/tools/apk-signing';
|
|
15
|
+
export type * from './lib/tools/apk-utils';
|
|
16
|
+
export type * from './lib/tools/apks-utils';
|
|
17
|
+
export type * from './lib/tools/aab-utils';
|
|
18
|
+
export type * from './lib/tools/android-manifest';
|
|
19
|
+
export type * from './lib/tools/keyboard-commands';
|
|
20
|
+
export type * from './lib/tools/lockmgmt';
|
|
21
|
+
import { ADB } from './lib/adb';
|
|
12
22
|
export default ADB;
|
|
13
23
|
//# sourceMappingURL=index.d.ts.map
|
package/build/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAKH,OAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAKH,cAAc,WAAW,CAAC;AAE1B,OAAO,EAAC,oBAAoB,EAAC,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAC,iBAAiB,EAAC,MAAM,eAAe,CAAC;AAEhD,mBAAmB,cAAc,CAAC;AAClC,mBAAmB,eAAe,CAAC;AACnC,mBAAmB,0BAA0B,CAAC;AAE9C,mBAAmB,0BAA0B,CAAC;AAC9C,mBAAmB,8BAA8B,CAAC;AAClD,mBAAmB,yBAAyB,CAAC;AAC7C,mBAAmB,uBAAuB,CAAC;AAC3C,mBAAmB,wBAAwB,CAAC;AAC5C,mBAAmB,uBAAuB,CAAC;AAC3C,mBAAmB,8BAA8B,CAAC;AAClD,mBAAmB,+BAA+B,CAAC;AACnD,mBAAmB,sBAAsB,CAAC;AAE1C,OAAO,EAAC,GAAG,EAAC,MAAM,WAAW,CAAC;AAC9B,eAAe,GAAG,CAAC"}
|
package/build/index.js
CHANGED
|
@@ -19,9 +19,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
19
19
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
20
20
|
};
|
|
21
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
exports.getSdkRootFromEnv = exports.getAndroidBinaryPath = void 0;
|
|
22
23
|
const source_map_support_1 = require("source-map-support");
|
|
23
24
|
(0, source_map_support_1.install)();
|
|
24
|
-
const adb_1 = require("./lib/adb");
|
|
25
25
|
__exportStar(require("./lib/adb"), exports);
|
|
26
|
+
// eslint-disable-next-line import/export
|
|
27
|
+
var system_calls_1 = require("./lib/tools/system-calls");
|
|
28
|
+
Object.defineProperty(exports, "getAndroidBinaryPath", { enumerable: true, get: function () { return system_calls_1.getAndroidBinaryPath; } });
|
|
29
|
+
var helpers_1 = require("./lib/helpers");
|
|
30
|
+
Object.defineProperty(exports, "getSdkRootFromEnv", { enumerable: true, get: function () { return helpers_1.getSdkRootFromEnv; } });
|
|
31
|
+
const adb_1 = require("./lib/adb");
|
|
26
32
|
exports.default = adb_1.ADB;
|
|
27
33
|
//# sourceMappingURL=index.js.map
|
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA;;;;GAIG
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;;AAEH,2DAA2C;AAC3C,IAAA,4BAAO,GAAE,CAAC;AAEV,4CAA0B;AAC1B,yCAAyC;AACzC,yDAA8D;AAAtD,oHAAA,oBAAoB,OAAA;AAC5B,yCAAgD;AAAxC,4GAAA,iBAAiB,OAAA;AAgBzB,mCAA8B;AAC9B,kBAAe,SAAG,CAAC"}
|
package/build/lib/adb.d.ts
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { getSdkRootFromEnv } from './helpers';
|
|
1
|
+
import _ from 'lodash';
|
|
3
2
|
import type { ADBOptions, ADBExecutable } from './options';
|
|
4
|
-
import type { LogcatOpts } from './logcat';
|
|
3
|
+
import type { LogcatOpts, Logcat } from './logcat';
|
|
5
4
|
import type { LRUCache } from 'lru-cache';
|
|
6
|
-
|
|
5
|
+
import type { StringRecord } from '@appium/types';
|
|
6
|
+
import * as generalMethods from './tools/adb-commands';
|
|
7
|
+
import * as manifestMethods from './tools/android-manifest';
|
|
8
|
+
import * as systemCallMethods from './tools/system-calls';
|
|
9
|
+
import * as apkSigningMethods from './tools/apk-signing';
|
|
10
|
+
import * as apkUtilsMethods from './tools/apk-utils';
|
|
11
|
+
import * as apksUtilsMethods from './tools/apks-utils';
|
|
12
|
+
import * as aabUtilsMethods from './tools/aab-utils';
|
|
13
|
+
import * as emuMethods from './tools/adb-emu-commands';
|
|
14
|
+
import * as lockManagementCommands from './tools/lockmgmt';
|
|
15
|
+
import * as keyboardCommands from './tools/keyboard-commands';
|
|
16
|
+
export declare const DEFAULT_ADB_PORT = 5037;
|
|
7
17
|
export declare const DEFAULT_OPTS: {
|
|
8
18
|
readonly sdkRoot: string | undefined;
|
|
9
19
|
readonly executable: {
|
|
@@ -18,7 +28,7 @@ export declare const DEFAULT_OPTS: {
|
|
|
18
28
|
readonly allowOfflineDevices: false;
|
|
19
29
|
readonly allowDelayAdb: true;
|
|
20
30
|
};
|
|
21
|
-
export declare class ADB {
|
|
31
|
+
export declare class ADB implements ADBOptions {
|
|
22
32
|
adbHost?: string;
|
|
23
33
|
adbPort?: number;
|
|
24
34
|
_apiLevel: number | undefined;
|
|
@@ -31,7 +41,29 @@ export declare class ADB {
|
|
|
31
41
|
_areExtendedLsOptionsSupported: boolean | undefined;
|
|
32
42
|
remoteAppsCache: LRUCache<string, string> | undefined;
|
|
33
43
|
_isLockManagementSupported: boolean | undefined;
|
|
44
|
+
sdkRoot?: string;
|
|
45
|
+
udid?: string;
|
|
46
|
+
appDeviceReadyTimeout?: number;
|
|
47
|
+
useKeystore?: boolean;
|
|
48
|
+
keystorePath?: string;
|
|
49
|
+
keystorePassword?: string;
|
|
50
|
+
keyAlias?: string;
|
|
51
|
+
keyPassword?: string;
|
|
34
52
|
executable: ADBExecutable;
|
|
53
|
+
tmpDir?: string;
|
|
54
|
+
curDeviceId?: string;
|
|
55
|
+
emulatorPort?: number;
|
|
56
|
+
logcat?: Logcat;
|
|
57
|
+
binaries?: StringRecord;
|
|
58
|
+
suppressKillServer?: boolean;
|
|
59
|
+
adbExecTimeout?: number;
|
|
60
|
+
remoteAppsCacheLimit?: number;
|
|
61
|
+
buildToolsVersion?: string;
|
|
62
|
+
allowOfflineDevices?: boolean;
|
|
63
|
+
allowDelayAdb?: boolean;
|
|
64
|
+
remoteAdbHost?: string;
|
|
65
|
+
remoteAdbPort?: number;
|
|
66
|
+
clearDeviceLogsOnStart?: boolean;
|
|
35
67
|
constructor(opts?: ADBOptions);
|
|
36
68
|
/**
|
|
37
69
|
* Create a new instance of `ADB` that inherits configuration from this `ADB` instance.
|
|
@@ -41,6 +73,282 @@ export declare class ADB {
|
|
|
41
73
|
*/
|
|
42
74
|
clone(opts?: ADBOptions): ADB;
|
|
43
75
|
static createADB(opts?: ADBOptions): Promise<ADB>;
|
|
76
|
+
shellChunks: typeof generalMethods.shellChunks;
|
|
77
|
+
getAdbWithCorrectAdbPath: typeof generalMethods.getAdbWithCorrectAdbPath;
|
|
78
|
+
initAapt: typeof generalMethods.initAapt;
|
|
79
|
+
initAapt2: typeof generalMethods.initAapt2;
|
|
80
|
+
initZipAlign: typeof generalMethods.initZipAlign;
|
|
81
|
+
initBundletool: typeof generalMethods.initBundletool;
|
|
82
|
+
getApiLevel: typeof generalMethods.getApiLevel;
|
|
83
|
+
getPlatformVersion: typeof generalMethods.getPlatformVersion;
|
|
84
|
+
isDeviceConnected: typeof generalMethods.isDeviceConnected;
|
|
85
|
+
mkdir: typeof generalMethods.mkdir;
|
|
86
|
+
isValidClass: typeof generalMethods.isValidClass;
|
|
87
|
+
resolveLaunchableActivity: typeof generalMethods.resolveLaunchableActivity;
|
|
88
|
+
forceStop: typeof generalMethods.forceStop;
|
|
89
|
+
killPackage: typeof generalMethods.killPackage;
|
|
90
|
+
clear: typeof generalMethods.clear;
|
|
91
|
+
grantAllPermissions: typeof generalMethods.grantAllPermissions;
|
|
92
|
+
grantPermissions: typeof generalMethods.grantPermissions;
|
|
93
|
+
grantPermission: typeof generalMethods.grantPermission;
|
|
94
|
+
revokePermission: typeof generalMethods.revokePermission;
|
|
95
|
+
getGrantedPermissions: typeof generalMethods.getGrantedPermissions;
|
|
96
|
+
getDeniedPermissions: typeof generalMethods.getDeniedPermissions;
|
|
97
|
+
getReqPermissions: typeof generalMethods.getReqPermissions;
|
|
98
|
+
getLocationProviders: typeof generalMethods.getLocationProviders;
|
|
99
|
+
toggleGPSLocationProvider: typeof generalMethods.toggleGPSLocationProvider;
|
|
100
|
+
setHiddenApiPolicy: typeof generalMethods.setHiddenApiPolicy;
|
|
101
|
+
setDefaultHiddenApiPolicy: typeof generalMethods.setDefaultHiddenApiPolicy;
|
|
102
|
+
stopAndClear: typeof generalMethods.stopAndClear;
|
|
103
|
+
availableIMEs: typeof generalMethods.availableIMEs;
|
|
104
|
+
enabledIMEs: typeof generalMethods.enabledIMEs;
|
|
105
|
+
enableIME: typeof generalMethods.enableIME;
|
|
106
|
+
disableIME: typeof generalMethods.disableIME;
|
|
107
|
+
setIME: typeof generalMethods.setIME;
|
|
108
|
+
defaultIME: typeof generalMethods.defaultIME;
|
|
109
|
+
keyevent: typeof generalMethods.keyevent;
|
|
110
|
+
inputText: typeof generalMethods.inputText;
|
|
111
|
+
clearTextField: typeof generalMethods.clearTextField;
|
|
112
|
+
lock: typeof generalMethods.lock;
|
|
113
|
+
back: typeof generalMethods.back;
|
|
114
|
+
goToHome: typeof generalMethods.goToHome;
|
|
115
|
+
getAdbPath: typeof generalMethods.getAdbPath;
|
|
116
|
+
getScreenOrientation: typeof generalMethods.getScreenOrientation;
|
|
117
|
+
sendTelnetCommand: typeof generalMethods.sendTelnetCommand;
|
|
118
|
+
isAirplaneModeOn: typeof generalMethods.isAirplaneModeOn;
|
|
119
|
+
setAirplaneMode: typeof generalMethods.setAirplaneMode;
|
|
120
|
+
setBluetoothOn: typeof generalMethods.setBluetoothOn;
|
|
121
|
+
setNfcOn: typeof generalMethods.setNfcOn;
|
|
122
|
+
broadcastAirplaneMode: typeof generalMethods.broadcastAirplaneMode;
|
|
123
|
+
isWifiOn: typeof generalMethods.isWifiOn;
|
|
124
|
+
isDataOn: typeof generalMethods.isDataOn;
|
|
125
|
+
isAnimationOn: typeof generalMethods.isAnimationOn;
|
|
126
|
+
setAnimationScale: typeof generalMethods.setAnimationScale;
|
|
127
|
+
rimraf: typeof generalMethods.rimraf;
|
|
128
|
+
push: typeof generalMethods.push;
|
|
129
|
+
pull: typeof generalMethods.pull;
|
|
130
|
+
processExists: typeof generalMethods.processExists;
|
|
131
|
+
getForwardList: typeof generalMethods.getForwardList;
|
|
132
|
+
forwardPort: typeof generalMethods.forwardPort;
|
|
133
|
+
removePortForward: typeof generalMethods.removePortForward;
|
|
134
|
+
getReverseList: typeof generalMethods.getReverseList;
|
|
135
|
+
reversePort: typeof generalMethods.reversePort;
|
|
136
|
+
removePortReverse: typeof generalMethods.removePortReverse;
|
|
137
|
+
forwardAbstractPort: typeof generalMethods.forwardAbstractPort;
|
|
138
|
+
ping: typeof generalMethods.ping;
|
|
139
|
+
restart: typeof generalMethods.restart;
|
|
140
|
+
startLogcat: typeof generalMethods.startLogcat;
|
|
141
|
+
stopLogcat: typeof generalMethods.stopLogcat;
|
|
142
|
+
getLogcatLogs: typeof generalMethods.getLogcatLogs;
|
|
143
|
+
setLogcatListener: typeof generalMethods.setLogcatListener;
|
|
144
|
+
removeLogcatListener: typeof generalMethods.removeLogcatListener;
|
|
145
|
+
listProcessStatus: typeof generalMethods.listProcessStatus;
|
|
146
|
+
getNameByPid: typeof generalMethods.getNameByPid;
|
|
147
|
+
getPIDsByName: typeof generalMethods.getPIDsByName;
|
|
148
|
+
killProcessesByName: typeof generalMethods.killProcessesByName;
|
|
149
|
+
killProcessByPID: typeof generalMethods.killProcessByPID;
|
|
150
|
+
broadcastProcessEnd: typeof generalMethods.broadcastProcessEnd;
|
|
151
|
+
broadcast: typeof generalMethods.broadcast;
|
|
152
|
+
getDeviceProperty: typeof generalMethods.getDeviceProperty;
|
|
153
|
+
setDeviceProperty: typeof generalMethods.setDeviceProperty;
|
|
154
|
+
getDeviceSysLanguage: typeof generalMethods.getDeviceSysLanguage;
|
|
155
|
+
getDeviceSysCountry: typeof generalMethods.getDeviceSysCountry;
|
|
156
|
+
getDeviceSysLocale: typeof generalMethods.getDeviceSysLocale;
|
|
157
|
+
getDeviceProductLanguage: typeof generalMethods.getDeviceProductLanguage;
|
|
158
|
+
getDeviceProductCountry: typeof generalMethods.getDeviceProductCountry;
|
|
159
|
+
getDeviceProductLocale: typeof generalMethods.getDeviceProductLocale;
|
|
160
|
+
getModel: typeof generalMethods.getModel;
|
|
161
|
+
getManufacturer: typeof generalMethods.getManufacturer;
|
|
162
|
+
getScreenSize: typeof generalMethods.getScreenSize;
|
|
163
|
+
getScreenDensity: typeof generalMethods.getScreenDensity;
|
|
164
|
+
setHttpProxy: typeof generalMethods.setHttpProxy;
|
|
165
|
+
deleteHttpProxy: typeof generalMethods.deleteHttpProxy;
|
|
166
|
+
setSetting: typeof generalMethods.setSetting;
|
|
167
|
+
getSetting: typeof generalMethods.getSetting;
|
|
168
|
+
bugreport: typeof generalMethods.bugreport;
|
|
169
|
+
screenrecord: typeof generalMethods.screenrecord;
|
|
170
|
+
runInImeContext: typeof generalMethods.runInImeContext;
|
|
171
|
+
getTimeZone: typeof generalMethods.getTimeZone;
|
|
172
|
+
listFeatures: typeof generalMethods.listFeatures;
|
|
173
|
+
isStreamedInstallSupported: typeof generalMethods.isStreamedInstallSupported;
|
|
174
|
+
isIncrementalInstallSupported: typeof generalMethods.isIncrementalInstallSupported;
|
|
175
|
+
getDeviceIdleWhitelist: typeof generalMethods.getDeviceIdleWhitelist;
|
|
176
|
+
addToDeviceIdleWhitelist: typeof generalMethods.addToDeviceIdleWhitelist;
|
|
177
|
+
takeScreenshot: typeof generalMethods.takeScreenshot;
|
|
178
|
+
setWifiState: typeof generalMethods.setWifiState;
|
|
179
|
+
setDataState: typeof generalMethods.setDataState;
|
|
180
|
+
listPorts: typeof generalMethods.listPorts;
|
|
181
|
+
executeApksigner: typeof apkSigningMethods.executeApksigner;
|
|
182
|
+
signWithDefaultCert: typeof apkSigningMethods.signWithDefaultCert;
|
|
183
|
+
signWithCustomCert: typeof apkSigningMethods.signWithCustomCert;
|
|
184
|
+
sign: typeof apkSigningMethods.sign;
|
|
185
|
+
zipAlignApk: typeof apkSigningMethods.zipAlignApk;
|
|
186
|
+
checkApkCert: typeof apkSigningMethods.checkApkCert;
|
|
187
|
+
getKeystoreHash: typeof apkSigningMethods.getKeystoreHash;
|
|
188
|
+
APP_INSTALL_STATE: Record<string, apkUtilsMethods.InstallState>;
|
|
189
|
+
isAppInstalled: typeof apkUtilsMethods.isAppInstalled;
|
|
190
|
+
startUri: typeof apkUtilsMethods.startUri;
|
|
191
|
+
startApp: typeof apkUtilsMethods.startApp;
|
|
192
|
+
dumpWindows: typeof apkUtilsMethods.dumpWindows;
|
|
193
|
+
getFocusedPackageAndActivity: typeof apkUtilsMethods.getFocusedPackageAndActivity;
|
|
194
|
+
waitForActivityOrNot: typeof apkUtilsMethods.waitForActivityOrNot;
|
|
195
|
+
waitForActivity: typeof apkUtilsMethods.waitForActivity;
|
|
196
|
+
waitForNotActivity: typeof apkUtilsMethods.waitForNotActivity;
|
|
197
|
+
uninstallApk: typeof apkUtilsMethods.uninstallApk;
|
|
198
|
+
installFromDevicePath: typeof apkUtilsMethods.installFromDevicePath;
|
|
199
|
+
cacheApk: typeof apkUtilsMethods.cacheApk;
|
|
200
|
+
install: typeof apkUtilsMethods.install;
|
|
201
|
+
getApplicationInstallState: typeof apkUtilsMethods.getApplicationInstallState;
|
|
202
|
+
installOrUpgrade: typeof apkUtilsMethods.installOrUpgrade;
|
|
203
|
+
extractStringsFromApk: typeof apkUtilsMethods.extractStringsFromApk;
|
|
204
|
+
getDeviceLanguage: typeof apkUtilsMethods.getDeviceLanguage;
|
|
205
|
+
getDeviceCountry: typeof apkUtilsMethods.getDeviceCountry;
|
|
206
|
+
getDeviceLocale: typeof apkUtilsMethods.getDeviceLocale;
|
|
207
|
+
ensureCurrentLocale: typeof apkUtilsMethods.ensureCurrentLocale;
|
|
208
|
+
getApkInfo: typeof apkUtilsMethods.getApkInfo;
|
|
209
|
+
getPackageInfo: typeof apkUtilsMethods.getPackageInfo;
|
|
210
|
+
pullApk: typeof apkUtilsMethods.pullApk;
|
|
211
|
+
activateApp: typeof apkUtilsMethods.activateApp;
|
|
212
|
+
hideKeyboard: typeof keyboardCommands.hideKeyboard;
|
|
213
|
+
isSoftKeyboardPresent: typeof keyboardCommands.isSoftKeyboardPresent;
|
|
214
|
+
isLockManagementSupported: typeof lockManagementCommands.isLockManagementSupported;
|
|
215
|
+
verifyLockCredential: typeof lockManagementCommands.verifyLockCredential;
|
|
216
|
+
clearLockCredential: typeof lockManagementCommands.clearLockCredential;
|
|
217
|
+
isLockEnabled: typeof lockManagementCommands.isLockEnabled;
|
|
218
|
+
setLockCredential: typeof lockManagementCommands.setLockCredential;
|
|
219
|
+
isScreenLocked: typeof lockManagementCommands.isScreenLocked;
|
|
220
|
+
dismissKeyguard: typeof lockManagementCommands.dismissKeyguard;
|
|
221
|
+
cycleWakeUp: typeof lockManagementCommands.cycleWakeUp;
|
|
222
|
+
getSdkBinaryPath: typeof systemCallMethods.getSdkBinaryPath;
|
|
223
|
+
getBinaryNameForOS: ((binaryName: string) => string) & _.MemoizedFunction;
|
|
224
|
+
getBinaryFromSdkRoot: typeof systemCallMethods.getBinaryFromSdkRoot;
|
|
225
|
+
getBinaryFromPath: typeof systemCallMethods.getBinaryFromPath;
|
|
226
|
+
getConnectedDevices: typeof systemCallMethods.getConnectedDevices;
|
|
227
|
+
getDevicesWithRetry: typeof systemCallMethods.getDevicesWithRetry;
|
|
228
|
+
reconnect: typeof systemCallMethods.reconnect;
|
|
229
|
+
restartAdb: typeof systemCallMethods.restartAdb;
|
|
230
|
+
killServer: typeof systemCallMethods.killServer;
|
|
231
|
+
resetTelnetAuthToken: (() => Promise<boolean>) & _.MemoizedFunction;
|
|
232
|
+
adbExecEmu: typeof systemCallMethods.adbExecEmu;
|
|
233
|
+
EXEC_OUTPUT_FORMAT: {
|
|
234
|
+
STDOUT: "stdout";
|
|
235
|
+
FULL: "full";
|
|
236
|
+
};
|
|
237
|
+
adbExec: typeof systemCallMethods.adbExec;
|
|
238
|
+
shell: typeof systemCallMethods.shell;
|
|
239
|
+
createSubProcess: typeof systemCallMethods.createSubProcess;
|
|
240
|
+
getAdbServerPort: typeof systemCallMethods.getAdbServerPort;
|
|
241
|
+
getEmulatorPort: typeof systemCallMethods.getEmulatorPort;
|
|
242
|
+
getPortFromEmulatorString: typeof systemCallMethods.getPortFromEmulatorString;
|
|
243
|
+
getConnectedEmulators: typeof systemCallMethods.getConnectedEmulators;
|
|
244
|
+
setEmulatorPort: typeof systemCallMethods.setEmulatorPort;
|
|
245
|
+
setDeviceId: typeof systemCallMethods.setDeviceId;
|
|
246
|
+
setDevice: typeof systemCallMethods.setDevice;
|
|
247
|
+
getRunningAVD: typeof systemCallMethods.getRunningAVD;
|
|
248
|
+
getRunningAVDWithRetry: typeof systemCallMethods.getRunningAVDWithRetry;
|
|
249
|
+
killAllEmulators: typeof systemCallMethods.killAllEmulators;
|
|
250
|
+
killEmulator: typeof systemCallMethods.killEmulator;
|
|
251
|
+
launchAVD: typeof systemCallMethods.launchAVD;
|
|
252
|
+
getVersion: (() => Promise<{
|
|
253
|
+
binary: {
|
|
254
|
+
version: import("semver").SemVer | null;
|
|
255
|
+
build: number;
|
|
256
|
+
};
|
|
257
|
+
bridge: {
|
|
258
|
+
version: import("semver").SemVer | null;
|
|
259
|
+
};
|
|
260
|
+
}>) & _.MemoizedFunction;
|
|
261
|
+
waitForEmulatorReady: typeof systemCallMethods.waitForEmulatorReady;
|
|
262
|
+
waitForDevice: typeof systemCallMethods.waitForDevice;
|
|
263
|
+
reboot: typeof systemCallMethods.reboot;
|
|
264
|
+
changeUserPrivileges: typeof systemCallMethods.changeUserPrivileges;
|
|
265
|
+
root: typeof systemCallMethods.root;
|
|
266
|
+
unroot: typeof systemCallMethods.unroot;
|
|
267
|
+
isRoot: typeof systemCallMethods.isRoot;
|
|
268
|
+
fileExists: typeof systemCallMethods.fileExists;
|
|
269
|
+
ls: typeof systemCallMethods.ls;
|
|
270
|
+
fileSize: typeof systemCallMethods.fileSize;
|
|
271
|
+
installMitmCertificate: typeof systemCallMethods.installMitmCertificate;
|
|
272
|
+
isMitmCertificateInstalled: typeof systemCallMethods.isMitmCertificateInstalled;
|
|
273
|
+
execBundletool: typeof apksUtilsMethods.execBundletool;
|
|
274
|
+
getDeviceSpec: typeof apksUtilsMethods.getDeviceSpec;
|
|
275
|
+
installMultipleApks: typeof apksUtilsMethods.installMultipleApks;
|
|
276
|
+
installApks: typeof apksUtilsMethods.installApks;
|
|
277
|
+
extractBaseApk: typeof apksUtilsMethods.extractBaseApk;
|
|
278
|
+
extractLanguageApk: typeof apksUtilsMethods.extractLanguageApk;
|
|
279
|
+
isTestPackageOnlyError: typeof apksUtilsMethods.isTestPackageOnlyError;
|
|
280
|
+
packageAndLaunchActivityFromManifest: typeof manifestMethods.packageAndLaunchActivityFromManifest;
|
|
281
|
+
targetSdkVersionFromManifest: typeof manifestMethods.targetSdkVersionFromManifest;
|
|
282
|
+
targetSdkVersionUsingPKG: typeof manifestMethods.targetSdkVersionUsingPKG;
|
|
283
|
+
compileManifest: typeof manifestMethods.compileManifest;
|
|
284
|
+
insertManifest: typeof manifestMethods.insertManifest;
|
|
285
|
+
hasInternetPermissionFromManifest: typeof manifestMethods.hasInternetPermissionFromManifest;
|
|
286
|
+
extractUniversalApk: typeof aabUtilsMethods.extractUniversalApk;
|
|
287
|
+
isEmulatorConnected: typeof emuMethods.isEmulatorConnected;
|
|
288
|
+
verifyEmulatorConnected: typeof emuMethods.verifyEmulatorConnected;
|
|
289
|
+
fingerprint: typeof emuMethods.fingerprint;
|
|
290
|
+
rotate: typeof emuMethods.rotate;
|
|
291
|
+
powerAC: typeof emuMethods.powerAC;
|
|
292
|
+
sensorSet: typeof emuMethods.sensorSet;
|
|
293
|
+
powerCapacity: typeof emuMethods.powerCapacity;
|
|
294
|
+
powerOFF: typeof emuMethods.powerOFF;
|
|
295
|
+
sendSMS: typeof emuMethods.sendSMS;
|
|
296
|
+
gsmCall: typeof emuMethods.gsmCall;
|
|
297
|
+
gsmSignal: typeof emuMethods.gsmSignal;
|
|
298
|
+
gsmVoice: typeof emuMethods.gsmVoice;
|
|
299
|
+
networkSpeed: typeof emuMethods.networkSpeed;
|
|
300
|
+
execEmuConsoleCommand: typeof emuMethods.execEmuConsoleCommand;
|
|
301
|
+
getEmuVersionInfo: typeof emuMethods.getEmuVersionInfo;
|
|
302
|
+
getEmuImageProperties: typeof emuMethods.getEmuImageProperties;
|
|
303
|
+
checkAvdExist: typeof emuMethods.checkAvdExist;
|
|
304
|
+
POWER_AC_STATES: Readonly<{
|
|
305
|
+
POWER_AC_ON: "on";
|
|
306
|
+
POWER_AC_OFF: "off";
|
|
307
|
+
}>;
|
|
308
|
+
GSM_CALL_ACTIONS: Readonly<{
|
|
309
|
+
GSM_CALL: "call";
|
|
310
|
+
GSM_ACCEPT: "accept";
|
|
311
|
+
GSM_CANCEL: "cancel";
|
|
312
|
+
GSM_HOLD: "hold";
|
|
313
|
+
}>;
|
|
314
|
+
GSM_VOICE_STATES: Readonly<{
|
|
315
|
+
GSM_VOICE_UNREGISTERED: "unregistered";
|
|
316
|
+
GSM_VOICE_HOME: "home";
|
|
317
|
+
GSM_VOICE_ROAMING: "roaming";
|
|
318
|
+
GSM_VOICE_SEARCHING: "searching";
|
|
319
|
+
GSM_VOICE_DENIED: "denied";
|
|
320
|
+
GSM_VOICE_OFF: "off";
|
|
321
|
+
GSM_VOICE_ON: "on";
|
|
322
|
+
}>;
|
|
323
|
+
GSM_SIGNAL_STRENGTHS: readonly number[];
|
|
324
|
+
NETWORK_SPEED: Readonly<{
|
|
325
|
+
GSM: "gsm";
|
|
326
|
+
SCSD: "scsd";
|
|
327
|
+
GPRS: "gprs";
|
|
328
|
+
EDGE: "edge";
|
|
329
|
+
UMTS: "umts";
|
|
330
|
+
HSDPA: "hsdpa";
|
|
331
|
+
LTE: "lte";
|
|
332
|
+
EVDO: "evdo";
|
|
333
|
+
FULL: "full";
|
|
334
|
+
}>;
|
|
335
|
+
SENSORS: Readonly<{
|
|
336
|
+
ACCELERATION: "acceleration";
|
|
337
|
+
GYROSCOPE: "gyroscope";
|
|
338
|
+
MAGNETIC_FIELD: "magnetic-field";
|
|
339
|
+
ORIENTATION: "orientation";
|
|
340
|
+
TEMPERATURE: "temperature";
|
|
341
|
+
PROXIMITY: "proximity";
|
|
342
|
+
LIGHT: "light";
|
|
343
|
+
PRESSURE: "pressure";
|
|
344
|
+
HUMIDITY: "humidity";
|
|
345
|
+
MAGNETIC_FIELD_UNCALIBRATED: "magnetic-field-uncalibrated";
|
|
346
|
+
GYROSCOPE_UNCALIBRATED: "gyroscope-uncalibrated";
|
|
347
|
+
HINGE_ANGLE0: "hinge-angle0";
|
|
348
|
+
HINGE_ANGLE1: "hinge-angle1";
|
|
349
|
+
HINGE_ANGLE2: "hinge-angle2";
|
|
350
|
+
HEART_RATE: "heart-rate";
|
|
351
|
+
RGBC_LIGHT: "rgbc-light";
|
|
352
|
+
}>;
|
|
44
353
|
}
|
|
45
|
-
export { DEFAULT_ADB_PORT, getAndroidBinaryPath, getSdkRootFromEnv };
|
|
46
354
|
//# sourceMappingURL=adb.d.ts.map
|
package/build/lib/adb.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"adb.d.ts","sourceRoot":"","sources":["../../lib/adb.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"adb.d.ts","sourceRoot":"","sources":["../../lib/adb.ts"],"names":[],"mappings":"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"}
|