ADB 관련
https://aboutsc.tistory.com/162
[mobile] adb를 이용한 안드로이드 비트 확인
[mobile] adb를 이용한 안드로이드 비트 확인 매번 검색하기 번거로워 작성해보기로 한다.. Terminal adb shell getprop ro.product.cpu.abi adb shell getprop ro.product.cpu.abi2 결과
aboutsc.tistory.com
adb install getprop ro.product.cpu.abi
https://codechacha.com/ko/android-adb-start-service/
Android - adb 명령어로 Service 실행, 종료
adb shell am start Intent 명령어로 Intent에 대한 서비스를 실행시킬 수 있습니다. adb shell am stop-service Intent는 서비스를 중지시킵니다. adb shell am start-foreground-service Intent는 서비스를 foreground로 실행시킵
codechacha.com
https://codechacha.com/ko/android-adb-kill-process/
Android - adb 명령어로 특정 패키지의 프로세스 종료
adb 명령어로 특정 패키지의 프로세스를 종료시키는 방법을 소개합니다. 다음 명령어는 `com.google.android.youtube` 패키지를 강제로 중단하여, stop 상태로 변경합니다. 이 과정에서 앱의 프로세스는
codechacha.com
https://codechacha.com/ko/android-adb-force-stop/
Android - adb 명령어로 App 강제 종료 (force-stop)
adb 명령어로 특정 패키지를 강제로 중지시킬 수 있습니다. adb shell am force-stop <PACKAGE>, stop과 `force-stop`의 차이점은, stop은 단순히 Activity나 Service가 종료되는 것을 말하지만 force stop은 프로세스가 k
codechacha.com
https://codechacha.com/ko/android-adb-install-uninstall/
Android - adb 명령어로 apk 설치, 삭제
adb 명령어로 apk 파일 설치, 삭제 방법을 소개합니다. 다음 명령어는 PC에 있는 `YouTube.apk`파일을 디바이스에 설치합니다. 다음 명령어는 디바이스의 `/data/local/tmp/YouTube.apk`를 설치합니다. 다음 명
codechacha.com