UNPKG

appium-adb

Version:

Android Debug Bridge interface

16 lines 545 B
export interface BuildInstallArgsOptions { replace?: boolean; allowTestPackages?: boolean; useSdcard?: boolean; grantPermissions?: boolean; partialInstall?: boolean; } /** * Builds command-line arguments for `adb install`. * * @param apiLevel - Android API level of the target device * @param options - Install options mapped to adb flags * @returns A list of install flags */ export declare function buildInstallArgs(apiLevel: number, options?: BuildInstallArgsOptions): string[]; //# sourceMappingURL=install.d.ts.map