MacOS에 Android Studio 설치하기 - feat. Homebrew

2023. 3. 31. 20:25DEV/Mac

반응형

Flutter로 Android App 개발을 위한 Android Stuido를 설치합니다.

 

 

시스템 요구사항

🔗 Android setup

  • MacOSⓇ 10.14 (Mojave) or higher
  • ARM-based chips, or 2nd generation Intel Core or newer with support for Hypervisor.Framework
  • 8 GB RAM or more
  • 8 GB of available disk space minimum (IDE + Android SDK + Android Emulator)
  • 1280 x 800 minimum screen resolution

 

설치

Android Studio 역시 Homebrew를 이용해서 설치합니다.

% brew install --cask android-studio

==> Downloading https://redirector.gvt1.com/edgedl/android/studio/install/2022.1.1.21/android-studio-2022.1
==> Downloading from https://r4---sn-3u-bh2zs.gvt1.com/edgedl/android/studio/install/2022.1.1.21/android-st
######################################################################## 100.0%
==> Installing Cask android-studio
==> Moving App 'Android Studio.app' to '/Applications/Android Studio.app'
🍺  android-studio was successfully installed!

 

실행

설치 완료 후 Application 폴더에 설치된 Android Studio를 실행합니다. Spotlight로 검색해도 바로 나오더군요.

전체적으로 기본 설정으로 쭉쭉 진행하시면 됩니다.

본인이 원하는 UI Theme Mode를 선택합니다.

라이선스 이용에 동의 후 계속 진행합니다.

설치가 끝나면 Finish를 눌러 종료합니다.

 

설치 확인

Flutter에 정상적으로 반영됐는지 확인을 합니다.

Java와 Android Studio를 설치한 후 flutter doctor로 확인하니, Android Studio 이슈가 완료 상태가 됐고 이제 남은 이슈는 한 개뿐이네요.

% flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.7.8, on macOS 13.3 22E252 darwin-arm64, locale en-KR)
[✗] Android toolchain - develop for Android devices
    ✗ Unable to locate Android SDK.
      Install Android Studio from: https://developer.android.com/studio/index.html
      On first launch it will assist you in installing the Android SDK components.
      (or visit https://flutter.dev/docs/get-started/install/macos#android-setup for detailed
      instructions).
      If the Android SDK has been installed to a custom location, please use
      `flutter config --android-sdk` to update to that location.

[✓] Xcode - develop for iOS and macOS (Xcode 14.2)
[✓] Chrome - develop for the web
[✓] Android Studio (version 2022.1)  ### Android Studio 이슈 처리 완료
[✓] VS Code (version 1.76.2)
[✓] Connected device (2 available)
[✓] HTTP Host Availability

! Doctor found issues in 1 category.

이제 Android Studio 설치가 끝났어요.

다음으로 Android SDK를 설치를 진행하려면 MacOS에 Android SDK 설치하기 - feat. Homebrew를 참고하세요.

 

개발 환경 설정하기

💡 MacOS에 Flutter 개발 환경 세팅하기 - feat. Homebrew에서 전체 설치 방법을 확인하실 수 있습니다.
  • Xcode, iOS Simulator
  • Homebrew
  • iTerm2
  • Visual Studio Code
  • Flutter
  • CocoaPods
  • Java
  • Android Studio, Android SDK, Android Emulator
반응형