Searched refs:install (Results 1 – 25 of 26) sorted by relevance
12
14 To install, pass the `-g` option to `adb install` to give the needed permissions:16 adb install -r -g DumpViewer.apk19 adb install -r -g ${ANDROID_PRODUCT_OUT}/data/app/DumpViewer/DumpViewer.apk
44 if ! adb -s "${1}" install -r -d -g "${2}" > /dev/null; then46 run_cmd_or_die adb -s "${1}" install -r -d -g "${2}"100 …run_cmd_with_retries adb -s "${TARGET_DEVICE_SERIAL}" wait-for-device shell pm install -r -g -d "$…122 -i|--install-only) PERFORM_BUILD=false; shift ;;211 …&& adb -s "${HOST_SERIAL}" install -r -d -g "${OUT}/${HOST_APK_DIR}/VdmHost.apk" > /dev/null 2>&1;…
7 [Build & Install](#build-and-install) \63 The interactive script will prompt you which apps to install to which of the64 available devices, build the APKs and install them.107 `adb install -r -d -g $OUT/system/priv-app/VdmHost/VdmHost.apk`109 1. Build and install the Demo app on the host device.112 m -j VdmDemos && adb install -r -d -g $OUT/system/app/VdmDemos/VdmDemos.apk115 1. Build and install the Client app on the client device.118 m -j VdmClient && adb install -r -d -g $OUT/system/app/VdmClient/VdmClient.apk
5 ## Build and install:10 adb install -r -g $OUT/data/app/DeviceAdminWhitelistedAccount/DeviceAdminWhitelistedAccount.apk
7 ### New install23 adb install -r ${OUT}${APP_PATH} ${APP_PATH}
32 for install, path in itertools.product(installs, paths):33 yield (install, path)
25 For first time set-up, install https://python-poetry.org/, then run26 `poetry install` to install the project's dependencies.
747 install-types = ["pip"]
66 for install in installs:67 if install.startswith(system_prefix):68 system_file = install[system_prefix_len:]
6 m ReceiveContentDemo && adb install out/target/product/blueline/system/app/ReceiveContentDemo/Recei…
16 apt-get -qq -y --force-yes install docker.io
11 This sample doesn't have any companion phone app so you need to install this directly
93 # having no cross-platform support, pipenv may install dependencies that don't work, or not94 # install all needed dependencies.
84 for install in installs:85 if install.startswith(out_system_path):
97 sudo apt-get install lcov
1 android_winusb.inf file contained in this folder must be used to install20 to install WinUsb framework. These files can be obtained from WDK 'redist'
11 && go install repodiff \
13 * Run `npm install`
57 Button button = (Button) findViewById(R.id.install); in onCreate()
15 In order to build a directory with a SOURCES file you will need to install
22 * adb install like usual
371 def install(self, filename: str, replace: bool = False) -> str: member in AndroidDevice