티스토리 뷰

1. adb 실행 안될때 (adb not working)

 

platform-tools에 들어가서 adb를 입력해서 not found가 나타날 때

 

platform-tools에서 "./adb" 를 실행해보자.

 

이때 adb가 정상적으로 동작할 것이다. 

 

 

 

2. .bash_profile에 적용했는데도 안될 경우 (not starting .bash_profile)

안드로이드 adb 환경변수 경로 - export PATH=$PATH:/Users/{name}/Library/Android/sdk/platform-tools/

 

terminal을 실행했을때 본인 계정이름 옆에 ㅡ -zsh가 있을 경우에만 할것. 

 

.bash_profile이 있는 계정폴더에서 ".zshrc"를 만든다. 

*만일 zshrc파일이 존재한다면 만들지 말것

 

.zshrc파일을 열어서 아래 코드 추가 

 

if [ -f ~/.bash_profile ]; then
  . ~/.bash_profile
fi

 

terminal을 재실행하면 .bash_profile이 자동으로 실행되는 걸 확인할 수 있다.