appium-android-driver 5.13.0 → 5.13.2
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 +14 -0
- package/build/index.js +43 -40
- package/build/lib/android-helpers.d.ts +136 -0
- package/build/lib/android-helpers.d.ts.map +1 -0
- package/build/lib/android-helpers.js +760 -679
- package/build/lib/android-helpers.js.map +1 -1
- package/build/lib/bootstrap.d.ts +29 -0
- package/build/lib/bootstrap.d.ts.map +1 -0
- package/build/lib/bootstrap.js +192 -179
- package/build/lib/bootstrap.js.map +1 -1
- package/build/lib/commands/actions.d.ts +209 -0
- package/build/lib/commands/actions.d.ts.map +1 -0
- package/build/lib/commands/actions.js +327 -265
- package/build/lib/commands/actions.js.map +1 -1
- package/build/lib/commands/alert.d.ts +10 -0
- package/build/lib/commands/alert.d.ts.map +1 -0
- package/build/lib/commands/alert.js +12 -18
- package/build/lib/commands/alert.js.map +1 -1
- package/build/lib/commands/app-management.d.ts +314 -0
- package/build/lib/commands/app-management.d.ts.map +1 -0
- package/build/lib/commands/app-management.js +278 -110
- package/build/lib/commands/app-management.js.map +1 -1
- package/build/lib/commands/context.d.ts +94 -0
- package/build/lib/commands/context.d.ts.map +1 -0
- package/build/lib/commands/context.js +412 -260
- package/build/lib/commands/context.js.map +1 -1
- package/build/lib/commands/coverage.d.ts +5 -0
- package/build/lib/commands/coverage.d.ts.map +1 -0
- package/build/lib/commands/coverage.js +14 -17
- package/build/lib/commands/coverage.js.map +1 -1
- package/build/lib/commands/element.d.ts +36 -0
- package/build/lib/commands/element.d.ts.map +1 -0
- package/build/lib/commands/element.js +97 -127
- package/build/lib/commands/element.js.map +1 -1
- package/build/lib/commands/emu-console.d.ts +49 -0
- package/build/lib/commands/emu-console.d.ts.map +1 -0
- package/build/lib/commands/emu-console.js +36 -25
- package/build/lib/commands/emu-console.js.map +1 -1
- package/build/lib/commands/execute.d.ts +6 -0
- package/build/lib/commands/execute.d.ts.map +1 -0
- package/build/lib/commands/execute.js +68 -69
- package/build/lib/commands/execute.js.map +1 -1
- package/build/lib/commands/file-actions.d.ts +129 -0
- package/build/lib/commands/file-actions.d.ts.map +1 -0
- package/build/lib/commands/file-actions.js +321 -178
- package/build/lib/commands/file-actions.js.map +1 -1
- package/build/lib/commands/find.d.ts +13 -0
- package/build/lib/commands/find.d.ts.map +1 -0
- package/build/lib/commands/find.js +69 -51
- package/build/lib/commands/find.js.map +1 -1
- package/build/lib/commands/general.d.ts +133 -0
- package/build/lib/commands/general.d.ts.map +1 -0
- package/build/lib/commands/general.js +275 -216
- package/build/lib/commands/general.js.map +1 -1
- package/build/lib/commands/ime.d.ts +11 -0
- package/build/lib/commands/ime.d.ts.map +1 -0
- package/build/lib/commands/ime.js +27 -33
- package/build/lib/commands/ime.js.map +1 -1
- package/build/lib/commands/index.d.ts +3 -0
- package/build/lib/commands/index.d.ts.map +1 -0
- package/build/lib/commands/index.js +32 -35
- package/build/lib/commands/index.js.map +1 -1
- package/build/lib/commands/intent.d.ts +418 -0
- package/build/lib/commands/intent.d.ts.map +1 -0
- package/build/lib/commands/intent.js +281 -151
- package/build/lib/commands/intent.js.map +1 -1
- package/build/lib/commands/keyboard.d.ts +6 -0
- package/build/lib/commands/keyboard.d.ts.map +1 -0
- package/build/lib/commands/keyboard.js +6 -14
- package/build/lib/commands/keyboard.js.map +1 -1
- package/build/lib/commands/log.d.ts +45 -0
- package/build/lib/commands/log.d.ts.map +1 -0
- package/build/lib/commands/log.js +117 -103
- package/build/lib/commands/log.js.map +1 -1
- package/build/lib/commands/media-projection.d.ts +144 -0
- package/build/lib/commands/media-projection.d.ts.map +1 -0
- package/build/lib/commands/media-projection.js +228 -171
- package/build/lib/commands/media-projection.js.map +1 -1
- package/build/lib/commands/network.d.ts +139 -0
- package/build/lib/commands/network.d.ts.map +1 -0
- package/build/lib/commands/network.js +249 -181
- package/build/lib/commands/network.js.map +1 -1
- package/build/lib/commands/performance.d.ts +101 -0
- package/build/lib/commands/performance.d.ts.map +1 -0
- package/build/lib/commands/performance.js +390 -236
- package/build/lib/commands/performance.js.map +1 -1
- package/build/lib/commands/permissions.d.ts +93 -0
- package/build/lib/commands/permissions.d.ts.map +1 -0
- package/build/lib/commands/permissions.js +133 -93
- package/build/lib/commands/permissions.js.map +1 -1
- package/build/lib/commands/recordscreen.d.ts +194 -0
- package/build/lib/commands/recordscreen.d.ts.map +1 -0
- package/build/lib/commands/recordscreen.js +293 -224
- package/build/lib/commands/recordscreen.js.map +1 -1
- package/build/lib/commands/shell.d.ts +8 -0
- package/build/lib/commands/shell.d.ts.map +1 -0
- package/build/lib/commands/shell.js +38 -43
- package/build/lib/commands/shell.js.map +1 -1
- package/build/lib/commands/streamscreen.d.ts +104 -0
- package/build/lib/commands/streamscreen.d.ts.map +1 -0
- package/build/lib/commands/streamscreen.js +364 -305
- package/build/lib/commands/streamscreen.js.map +1 -1
- package/build/lib/commands/system-bars.d.ts +100 -0
- package/build/lib/commands/system-bars.d.ts.map +1 -0
- package/build/lib/commands/system-bars.js +148 -90
- package/build/lib/commands/system-bars.js.map +1 -1
- package/build/lib/commands/touch.d.ts +30 -0
- package/build/lib/commands/touch.d.ts.map +1 -0
- package/build/lib/commands/touch.js +311 -287
- package/build/lib/commands/touch.js.map +1 -1
- package/build/lib/desired-caps.d.ts +353 -0
- package/build/lib/desired-caps.d.ts.map +1 -0
- package/build/lib/desired-caps.js +291 -292
- package/build/lib/desired-caps.js.map +1 -1
- package/build/lib/driver.d.ts +430 -0
- package/build/lib/driver.d.ts.map +1 -0
- package/build/lib/driver.js +449 -384
- package/build/lib/driver.js.map +1 -1
- package/build/lib/logger.d.ts +3 -0
- package/build/lib/logger.d.ts.map +1 -0
- package/build/lib/logger.js +5 -11
- package/build/lib/logger.js.map +1 -1
- package/build/lib/method-map.d.ts +389 -0
- package/build/lib/method-map.d.ts.map +1 -0
- package/build/lib/method-map.js +220 -394
- package/build/lib/method-map.js.map +1 -1
- package/build/lib/stubs.d.ts +8 -0
- package/build/lib/stubs.d.ts.map +1 -0
- package/build/lib/stubs.js +5 -0
- package/build/lib/stubs.js.map +1 -0
- package/build/lib/uiautomator.d.ts +24 -0
- package/build/lib/uiautomator.d.ts.map +1 -0
- package/build/lib/uiautomator.js +86 -82
- package/build/lib/uiautomator.js.map +1 -1
- package/build/lib/unlock-helpers.d.ts +38 -0
- package/build/lib/unlock-helpers.d.ts.map +1 -0
- package/build/lib/unlock-helpers.js +228 -204
- package/build/lib/unlock-helpers.js.map +1 -1
- package/build/lib/utils.d.ts +11 -0
- package/build/lib/utils.d.ts.map +1 -0
- package/build/lib/utils.js +23 -18
- package/build/lib/utils.js.map +1 -1
- package/build/lib/webview-helpers.d.ts +223 -0
- package/build/lib/webview-helpers.d.ts.map +1 -0
- package/build/lib/webview-helpers.js +476 -298
- package/build/lib/webview-helpers.js.map +1 -1
- package/index.js +3 -1
- package/lib/android-helpers.js +2 -1
- package/lib/stubs.ts +8 -0
- package/lib/unlock-helpers.js +2 -2
- package/package.json +23 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [5.13.2](https://github.com/appium/appium-android-driver/compare/v5.13.1...v5.13.2) (2023-05-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Miscellaneous Chores
|
|
5
|
+
|
|
6
|
+
* build with typescript instead of babel ([2377a5c](https://github.com/appium/appium-android-driver/commit/2377a5cb299c8173dd43728072377afae22b70cd))
|
|
7
|
+
|
|
8
|
+
## [5.13.1](https://github.com/appium/appium-android-driver/compare/v5.13.0...v5.13.1) (2023-05-25)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Miscellaneous Chores
|
|
12
|
+
|
|
13
|
+
* build with typescript instead of babel ([368b7da](https://github.com/appium/appium-android-driver/commit/368b7dabab752792b100982278e3459775255918))
|
|
14
|
+
|
|
1
15
|
## [5.13.0](https://github.com/appium/appium-android-driver/compare/v5.12.2...v5.13.0) (2023-05-22)
|
|
2
16
|
|
|
3
17
|
|
package/build/index.js
CHANGED
|
@@ -1,48 +1,51 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
"use strict";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
15
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
16
|
+
}) : function(o, v) {
|
|
17
|
+
o["default"] = v;
|
|
6
18
|
});
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
var
|
|
10
|
-
var
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
const
|
|
17
|
-
|
|
18
|
-
|
|
19
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
20
|
+
if (mod && mod.__esModule) return mod;
|
|
21
|
+
var result = {};
|
|
22
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
23
|
+
__setModuleDefault(result, mod);
|
|
24
|
+
return result;
|
|
25
|
+
};
|
|
26
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
+
exports.SETTINGS_HELPER_PKG_ID = exports.CHROMIUM_WIN = exports.WEBVIEW_BASE = exports.WEBVIEW_WIN = exports.NATIVE_WIN = exports.webviewHelpers = exports.commonCapConstraints = exports.AndroidDriver = exports.androidCommands = exports.androidHelpers = void 0;
|
|
28
|
+
const source_map_support_1 = require("source-map-support");
|
|
29
|
+
(0, source_map_support_1.install)();
|
|
30
|
+
const driver = __importStar(require("./lib/driver"));
|
|
31
|
+
const androidHelperIndex = __importStar(require("./lib/android-helpers"));
|
|
32
|
+
const commandIndex = __importStar(require("./lib/commands/index"));
|
|
33
|
+
const webview = __importStar(require("./lib/webview-helpers"));
|
|
34
|
+
const caps = __importStar(require("./lib/desired-caps"));
|
|
35
|
+
const { AndroidDriver } = driver;
|
|
19
36
|
exports.AndroidDriver = AndroidDriver;
|
|
20
|
-
const {
|
|
21
|
-
helpers: webviewHelpers,
|
|
22
|
-
NATIVE_WIN,
|
|
23
|
-
WEBVIEW_WIN,
|
|
24
|
-
WEBVIEW_BASE,
|
|
25
|
-
CHROMIUM_WIN
|
|
26
|
-
} = webview;
|
|
27
|
-
exports.CHROMIUM_WIN = CHROMIUM_WIN;
|
|
28
|
-
exports.WEBVIEW_BASE = WEBVIEW_BASE;
|
|
29
|
-
exports.WEBVIEW_WIN = WEBVIEW_WIN;
|
|
30
|
-
exports.NATIVE_WIN = NATIVE_WIN;
|
|
37
|
+
const { helpers: webviewHelpers, NATIVE_WIN, WEBVIEW_WIN, WEBVIEW_BASE, CHROMIUM_WIN } = webview;
|
|
31
38
|
exports.webviewHelpers = webviewHelpers;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
39
|
+
exports.NATIVE_WIN = NATIVE_WIN;
|
|
40
|
+
exports.WEBVIEW_WIN = WEBVIEW_WIN;
|
|
41
|
+
exports.WEBVIEW_BASE = WEBVIEW_BASE;
|
|
42
|
+
exports.CHROMIUM_WIN = CHROMIUM_WIN;
|
|
43
|
+
const { commonCapConstraints } = caps;
|
|
35
44
|
exports.commonCapConstraints = commonCapConstraints;
|
|
36
|
-
const {
|
|
37
|
-
commands: androidCommands
|
|
38
|
-
} = commandIndex;
|
|
45
|
+
const { commands: androidCommands } = commandIndex;
|
|
39
46
|
exports.androidCommands = androidCommands;
|
|
40
|
-
const {
|
|
41
|
-
helpers: androidHelpers,
|
|
42
|
-
SETTINGS_HELPER_PKG_ID
|
|
43
|
-
} = androidHelperIndex;
|
|
44
|
-
exports.SETTINGS_HELPER_PKG_ID = SETTINGS_HELPER_PKG_ID;
|
|
47
|
+
const { helpers: androidHelpers, SETTINGS_HELPER_PKG_ID } = androidHelperIndex;
|
|
45
48
|
exports.androidHelpers = androidHelpers;
|
|
46
|
-
|
|
47
|
-
exports.default =
|
|
48
|
-
//# sourceMappingURL=
|
|
49
|
+
exports.SETTINGS_HELPER_PKG_ID = SETTINGS_HELPER_PKG_ID;
|
|
50
|
+
exports.default = AndroidDriver;
|
|
51
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
export default helpers;
|
|
2
|
+
export namespace helpers {
|
|
3
|
+
export function createBaseADB(opts?: {}): Promise<any>;
|
|
4
|
+
export function prepareEmulator(adb: any, opts: any): Promise<void>;
|
|
5
|
+
/**
|
|
6
|
+
* Set and ensure the locale name of the device under test.
|
|
7
|
+
*
|
|
8
|
+
* @param {Object} adb - The adb module instance.
|
|
9
|
+
* @param {string} language - Language. The language field is case insensitive, but Locale always canonicalizes to lower case.
|
|
10
|
+
* format: [a-zA-Z]{2,8}. e.g. en, ja : https://developer.android.com/reference/java/util/Locale.html
|
|
11
|
+
* @param {string} country - Country. The country (region) field is case insensitive, but Locale always canonicalizes to upper case.
|
|
12
|
+
* format: [a-zA-Z]{2} | [0-9]{3}. e.g. US, JP : https://developer.android.com/reference/java/util/Locale.html
|
|
13
|
+
* @param {?string} script - Script. The script field is case insensitive but Locale always canonicalizes to title case.
|
|
14
|
+
* format: [a-zA-Z]{4}. e.g. Hans in zh-Hans-CN : https://developer.android.com/reference/java/util/Locale.html
|
|
15
|
+
* @throws {Error} If it failed to set locale properly
|
|
16
|
+
*/
|
|
17
|
+
export function ensureDeviceLocale(adb: any, language: string, country: string, script?: string | null): Promise<void>;
|
|
18
|
+
export function getDeviceInfoFromCaps(opts?: {}): Promise<{
|
|
19
|
+
udid: any;
|
|
20
|
+
emPort: any;
|
|
21
|
+
}>;
|
|
22
|
+
export function createADB(opts?: {}): Promise<any>;
|
|
23
|
+
export function validatePackageActivityNames(opts: any): void;
|
|
24
|
+
export function getLaunchInfo(adb: any, opts: any): Promise<{
|
|
25
|
+
appPackage: any;
|
|
26
|
+
appWaitPackage: any;
|
|
27
|
+
appActivity: any;
|
|
28
|
+
appWaitActivity: any;
|
|
29
|
+
} | undefined>;
|
|
30
|
+
export function resetApp(adb: any, opts?: {}): Promise<void>;
|
|
31
|
+
export function installApk(adb: any, opts?: {}): Promise<void>;
|
|
32
|
+
/**
|
|
33
|
+
* Installs an array of apks
|
|
34
|
+
* @param {ADB} adb Instance of Appium ADB object
|
|
35
|
+
* @param {Object} opts Opts defined in driver.js
|
|
36
|
+
*/
|
|
37
|
+
export function installOtherApks(otherApps: any, adb: any, opts: any): Promise<void>;
|
|
38
|
+
/**
|
|
39
|
+
* Uninstall an array of packages
|
|
40
|
+
* @param {ADB} adb Instance of Appium ADB object
|
|
41
|
+
* @param {Array<string>} appPackages An array of package names to uninstall. If this includes `'*'`, uninstall all of 3rd party apps
|
|
42
|
+
* @param {Array<string>} filterPackages An array of packages does not uninstall when `*` is provided as `appPackages`
|
|
43
|
+
*/
|
|
44
|
+
export function uninstallOtherPackages(adb: any, appPackages: string[], filterPackages?: string[]): Promise<void>;
|
|
45
|
+
/**
|
|
46
|
+
* Get third party packages filtered with `filterPackages`
|
|
47
|
+
* @param {ADB} adb Instance of Appium ADB object
|
|
48
|
+
* @param {Array<string>} filterPackages An array of packages does not uninstall when `*` is provided as `appPackages`
|
|
49
|
+
* @returns {Array<string>} An array of installed third pary packages
|
|
50
|
+
*/
|
|
51
|
+
export function getThirdPartyPackages(adb: any, filterPackages?: string[]): string[];
|
|
52
|
+
export function initUnicodeKeyboard(adb: any): Promise<any>;
|
|
53
|
+
export function setMockLocationApp(adb: any, app: any): Promise<void>;
|
|
54
|
+
export function resetMockLocation(adb: any): Promise<void>;
|
|
55
|
+
export function installHelperApp(adb: any, apkPath: any, packageId: any): Promise<void>;
|
|
56
|
+
/**
|
|
57
|
+
* Pushes and installs io.appium.settings app.
|
|
58
|
+
* Throws an error if the setting app is required
|
|
59
|
+
*
|
|
60
|
+
* @param {Adb} adb - The adb module instance.
|
|
61
|
+
* @param {Object} opts - Driver options dictionary.
|
|
62
|
+
* @param {boolean} throwError [false] - Whether throw an error if Settings app fails to start
|
|
63
|
+
* @throws {Error} If throwError is true and something happens in installation step
|
|
64
|
+
*/
|
|
65
|
+
export function pushSettingsApp(adb: Adb, throwError?: boolean, opts?: any): Promise<void>;
|
|
66
|
+
/**
|
|
67
|
+
* Extracts string.xml and converts it to string.json and pushes
|
|
68
|
+
* it to /data/local/tmp/string.json on for use of bootstrap
|
|
69
|
+
* If app is not present to extract string.xml it deletes remote strings.json
|
|
70
|
+
* If app does not have strings.xml we push an empty json object to remote
|
|
71
|
+
*
|
|
72
|
+
* @param {?string} language - Language abbreviation, for example 'fr'. The default language
|
|
73
|
+
* is used if this argument is not defined.
|
|
74
|
+
* @param {Object} adb - The adb module instance.
|
|
75
|
+
* @param {Object} opts - Driver options dictionary.
|
|
76
|
+
* @returns {Object} The dictionary, where string resource identifiers are keys
|
|
77
|
+
* along with their corresponding values for the given language or an empty object
|
|
78
|
+
* if no matching resources were extracted.
|
|
79
|
+
*/
|
|
80
|
+
export function pushStrings(language: string | null, adb: any, opts: any): any;
|
|
81
|
+
export function unlock(driver: any, adb: any, capabilities: any): Promise<void>;
|
|
82
|
+
export function verifyUnlock(adb: any, timeoutMs?: null): Promise<void>;
|
|
83
|
+
export function initDevice(adb: any, opts: any): Promise<any>;
|
|
84
|
+
export function removeNullProperties(obj: any): void;
|
|
85
|
+
export function truncateDecimals(number: any, digits: any): number;
|
|
86
|
+
export function isChromeBrowser(browser: any): boolean;
|
|
87
|
+
export function getChromePkg(browser: any): any;
|
|
88
|
+
export function removeAllSessionWebSocketHandlers(server: any, sessionId: any): Promise<void>;
|
|
89
|
+
/**
|
|
90
|
+
* Takes a desired capability and tries to JSON.parse it as an array,
|
|
91
|
+
* and either returns the parsed array or a singleton array.
|
|
92
|
+
*
|
|
93
|
+
* @param {any} cap A desired capability
|
|
94
|
+
*/
|
|
95
|
+
export function parseArray(cap: any): any[];
|
|
96
|
+
/**
|
|
97
|
+
* Validate desired capabilities. Returns true if capability is valid
|
|
98
|
+
*
|
|
99
|
+
* @param {*} cap A desired capability
|
|
100
|
+
* @return {boolean} Returns true if the capability is valid
|
|
101
|
+
* @throws {Error} If the caps has invalid capability
|
|
102
|
+
*/
|
|
103
|
+
export function validateDesiredCaps(caps: any): boolean;
|
|
104
|
+
/**
|
|
105
|
+
* Adjust the capabilities for a browser session
|
|
106
|
+
*
|
|
107
|
+
* @param {Object} caps - Current capabilities object
|
|
108
|
+
* !!! The object is mutated by this method call !!!
|
|
109
|
+
* @returns {Object} The same possibly mutated `opts` instance.
|
|
110
|
+
* No mutation is happening is the current session if
|
|
111
|
+
* appPackage/appActivity caps have already been provided.
|
|
112
|
+
*/
|
|
113
|
+
export function adjustBrowserSessionCaps(caps?: any): any;
|
|
114
|
+
/**
|
|
115
|
+
* Checks whether the current device under test is an emulator
|
|
116
|
+
*
|
|
117
|
+
* @param {ADB} adb - appium-adb instance
|
|
118
|
+
* @param {Object} opts - driver options mapping
|
|
119
|
+
* @returns {boolean} `true` if the device is an Android emulator
|
|
120
|
+
*/
|
|
121
|
+
export function isEmulator(adb: any, opts: any): boolean;
|
|
122
|
+
export { Bootstrap as bootstrap };
|
|
123
|
+
export { unlocker };
|
|
124
|
+
}
|
|
125
|
+
export const SETTINGS_HELPER_PKG_ID: "io.appium.settings";
|
|
126
|
+
export const APP_STATE: Readonly<{
|
|
127
|
+
NOT_INSTALLED: 0;
|
|
128
|
+
NOT_RUNNING: 1;
|
|
129
|
+
RUNNING_IN_BACKGROUND: 3;
|
|
130
|
+
RUNNING_IN_FOREGROUND: 4;
|
|
131
|
+
}>;
|
|
132
|
+
export function prepareAvdArgs(adb: any, opts: any): any[];
|
|
133
|
+
export function ensureNetworkSpeed(adb: any, networkSpeed: any): any;
|
|
134
|
+
import Bootstrap from './bootstrap';
|
|
135
|
+
import { helpers as unlocker } from './unlock-helpers';
|
|
136
|
+
//# sourceMappingURL=android-helpers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"android-helpers.d.ts","sourceRoot":"","sources":["../../lib/android-helpers.js"],"names":[],"mappings":";;IAiHA,uDAmCC;IAED,oEAuCC;IAED;;;;;;;;;;;OAWG;IACH,uHAaC;IAED;;;OA4FC;IAGD,mDASC;IAED,8DAeC;IAED;;;;;mBA8BC;IAED,6DAsDC;IAED,+DAsCC;IAED;;;;OAIG;IACH,qFAgBC;IAED;;;;;OAKG;IACH,kHAQC;IAED;;;;;OAKG;IACH,qFAUC;IAED,4DAYC;IAED,sEAiCC;IAED,2DA+BC;IAED,wFAQC;IAED;;;;;;;;OAQG;IACH,2FA0DC;IAED;;;;;;;;;;;;;OAaG;IACH,+EAiCC;IAED,gFAsCC;IAED,wEAUC;IAED,8DA6DC;IAED,qDAMC;IAED,mEAMC;IAED,uDAEC;IAED,gDAEC;IAED,8FASC;IAED;;;;;OAKG;IACH,4CAaC;IAED;;;;;;OAMG;IACH,wDAoBC;IAED;;;;;;;;OAQG;IACH,0DAmBC;IAED;;;;;;OAMG;IACH,yDAGC;;;;AA55BD,0DAAoD;AAKpD;;;;;GAKG;AAYH,2DAqBC;AA9BD,qEAOC;sBAlEqB,aAAa;oCAO5B,kBAAkB"}
|