docs/scenes/get-started/set-up-your-environment/instructions/_androidStudioEnvironmentInstructions.mdx
import { Terminal } from '/ui/components/Snippet';
import { Step } from '/ui/components/Step';
import { Tabs, Tab } from '~/ui/components/Tabs';
Use a package manager such as Homebrew to install the following dependency.
Install Watchman using a tool such as Homebrew:
<Terminal cmd={['$ brew install watchman']} />
</Step> <Step label="2">Install OpenJDK distribution called Azul Zulu using Homebrew. This distribution offers JDKs for both Apple Silicon and Intel Macs.
Run the following commands in a terminal:
<Terminal cmd={['$ brew install --cask zulu@17']} />
After you install the JDK, add the JAVA_HOME environment variable in ~/.bash_profile (or ~/.zshrc if you use Zsh):
export JAVA_HOME=/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home
Use a package manager such as Chocolatey to install the following dependencies.
Install Java SE Development Kit (JDK):
<Terminal cmd={['$ choco install -y microsoft-openjdk17']} />
</Tab> <Tab label="Linux">Follow instructions from the Watchman documentation to compile and install it from the source.
</Step> <Step label="2">Install Java SE Development Kit (JDK):
You can download and install OpenJDK@17 from AdoptOpenJDK or your system packager.
</Step> </Tab> </Tabs>