-
[Android] adb installAndroid 2020. 6. 24. 19:23반응형
adb install
app installation - push a single package to the device and install it
adb install test.apk
app installation - push multiple APKs to the device for a single package and install them
adb install-multiple test.apk test2.apk
app installation - push one or more packages to the device and install them atomically
adb install-multi-package test.apk demo.apk
replace existing application
reinstall an existing app, keeping its data
adb install -r test.apk
allow test packages
adb install -t test.apk
allow version code downgrade
debuggable packages only
adb install -d test.apk
grant all runtime permissions
Grant all permissions listed in the app manifest
adb install -g test.apk
cause the app to be installed as an ephemeral install app
adb install --instant test.apk
use fast deploy
adb install --fastdeploy test.apk
always push APK to device and invoke Package Manager as separate steps
adb install --no-streaming test.apk
반응형'Android' 카테고리의 다른 글
[Android] RecycelerView avoid reuse (0) 2020.06.29 [Android] 알파값, 투명도 0~100% to Hex Opacity Values (0) 2020.06.29 [Android] Adapter에서 Context 사용하려 할 때 (0) 2020.06.23 [Android] 갤러리에서 이미지 선택 후 이미지뷰에서 보여주기 (0) 2020.06.23 [Android] EditText 밑줄 없애기 (0) 2020.06.23