링크: https://docs.maestro.dev/getting-started/installing-maestro
brew tap mobile-dev-inc/tap
brew install maestro
이후 설치가 종료되면 java runtime을 설치해야함.
~ ❯ brew install openjdk 13:52:4
==> Downloading https://formulae.brew.sh/api/formula.jws.json
==> Downloading https://formulae.brew.sh/api/cask.jws.json
Warning: openjdk 23.0.2 is already installed and up-to-date.
이미 java 가 설치가 됐는데 java --version
이 안된다면 환경변수 문제니까 환경변수를 세팅하면 된다.
echo 'export JAVA_HOME="/opt/homebrew/opt/openjdk"' >> ~/.zshrc
echo 'export PATH="$JAVA_HOME/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
java --version