본문 바로가기

Development5

Flutter 프로젝트 생성 및 실행하기(Feat. Android Studio) ※참고 사이트: https://docs.flutter.dev/get-started/test-drive?tab=androidstudio Test drive How to create a templated Flutter app and use hot reload. docs.flutter.dev 1. 안드로이드 스튜디오 실행하기(자신이 사용할 IDE 실행하기) 2. New Flutter Project 선택 ※ 만약 New Project만 있고 New Flutter Project가 없다면? 안드로이드 스튜디오 -> Settings -> Plugins -> 'Flutter' 플러그인을 찾아서 설치 후 재시작 3. 좌측 Generators에서 Flutter 선택 후, Next 4. 프로젝트 이름 등 프로젝트 설정한 후.. 2024. 2. 16.
Android Studio 설치 및 Flutter SDK 설치 1. https://developer.android.com/studio?hl=ko에서 원하는 안드로이드 스튜디오 버전 다운로드 2. 다운받은 dmg 파일 열기 3. 열린 창에서 안드로이드 스튜디오 앱 아이콘을 드래그해서 어플리케이션 폴더에 넣기 4. 실행시켜서 추가적인 설정과 다운로드 마치기 ※ https://developer.android.com/studio/install?hl=ko에서 설치 방법을 안내하고 있다 1. https://docs.flutter.dev/get-started/install Choose your development platform to get started Install Flutter and get started. Downloads available for Windows, ma.. 2024. 2. 16.
Ruby 설치하기(Feat. rbenv) 프로그래밍 언어 macOS에서는 기본적으로 system에 설치되어 있다 Homebrew와 CocoaPods이 루비로 만들어졌다 여러 버전의 루비를 관리하고 프로젝트별로 버전을 설정할 수 있게 해주는 도구 1. rbenv 설치 확인하기 rbenv --version 2. rbenv 설치하기 brew install rbenv ruby-build //rbenv와 함께 ruby-build를 설치하는 명령어 1. 루비 설치 확인하기 ruby --version ※macOS의 경우 기본적으로 설치되어 있다 2. 설치 가능한 루비 버전 확인하기 rbenv install -l 3. 원하는 루비 버전 설치하기 rbenv install [원하는 버전] //버전을 명시하지 않으면 최신버전으로 설치된다 4. 설치가 제대로 되었는.. 2024. 2. 16.
CocoaPods 설치하기 스위프트와 오브젝트C의 외부 라이브러리 관리 프로그램 1. 코코아팟 설치 확인하기 pod --version 2. 코코아팟 설치하기 ※ 참고 사이트: https://guides.cocoapods.org/using/getting-started.html#installation CocoaPods Guides CocoaPods is fully open-sourced, so it depends on community contributions to get better. If you're looking to start working on CocoaPods, this is the place to start. guides.cocoapods.org 2-1. 터미널에 다음 명령어 입력 sudo brew install coco.. 2024. 2. 16.