반응형
터미널에서 adb 명령어를 사용해도
-bash: adb: command not found
만 발생 하였다
MAC에서 사용하려면 PATH 를 지정 해줘야 하는것 같다.
bash 쉘에서 사용자의 환경설정을 저장하는 .bash_profile 파일이 있는지 체크
ls -l -a .bash_profile
.bash_profile이 없다면 새로 생성
touch -c .bash_profile
.bash_profile 수정
open -e .bash_profile
export문을 .bash_profile에 추가 (username에 자기의 폴더명으로)
export PATH=$PATH:/Users/username/Library/Android/sdk/platform-tools/
bash_profile 실행
source .bash_profile
적용 확인
$adb -version
출처 :
반응형
'안드로이드' 카테고리의 다른 글
RecyclerView setHasFixedSize (0) | 2022.03.29 |
---|---|
안드로이드 APK 아무나 삭제 못하도록 하는 adb 명령어 (0) | 2022.03.28 |
Android WebView (React 서비스 화면과 통신) (0) | 2022.03.21 |
LiveData 데이터가 100% 들어오지 않을 때 (0) | 2022.03.16 |
RecyclerView 데이터바인딩 + ItemTouchHelper시 데이터 중복문제 (0) | 2022.02.23 |