Flutter 설치
설치후 확인방법 flutter doctor
<error message> 원인 : 경로 설정
* 어디가 좋은 경로일까? Shared가 좋지만, 혼자 코딩한다면 Home 밑에 바로 넣는 것 추천.
vim ~/.zshrc
export PATH="$HOME/flutter/bin:$PATH"
source ~/.zshrc
Android studio, CocoaPods 설치
기본 가이드라인
1. 공식문서 - https://flutter-ko.dev/get-started/install/macos
2. 블로그 - https://wildeveloperetrain.tistory.com/358
Android studio 설치
1. 수많은 에러 나오지만 당황하지 말고!
Setting > 'Languages & Frameworks' > 'Android SDK'의 'SDK Tools' bar
'Android SDK Command-line Tools 선택후 apply
2. 설치확인은 아래 명령어로 확인 (오타 주의)
flutter doctor --android-licenses
Cocoapods 설치
1. cocoapods는 루비로 설치하면 에러남. homebrew로 설치.
2. homebrew 설치시 Error: Cannot install on Intel processor in ARM default prefix
원인> 경로설정
export PATH=/usr/local/bin:$PATH
3. Unable to get list of installed Simulator runtimes.
원인 > 미설치
xcodebuild -downloadPlatform iOS
참조
개발결과물 실시간 확인방법
Emulator 설정
On Device - dev mode 설정
https://developer.android.com/studio/debug/dev-options?hl=ko
'Developing.. > Basic' 카테고리의 다른 글
직렬화 Serialization (0) | 2022.06.10 |
---|---|
API 서버란? (0) | 2022.05.20 |
OS / LIBS, BINS + Compile (0) | 2022.05.18 |
Obejct, component (0) | 2022.05.17 |