분류 전체보기(28)
-
CocoaPods not installed or not in valid state
Exception: CocoaPods not installed or not in valid state. sudo xcode-select -switch / 참고 https://2vup.com/mac-cocoapods-install-error/ https://stackoverflow.com/questions/27768420/gem-installation-error-you-have-to-install-development-tools-first https://www.androidhuman.com/2021-04-18-flutter_cocoapods_not_installed_or_not_in_valid_state
2022.02.04 -
iOS build issue - Error launching application on iPhone
Error launching application on iPhone # issue # solution => Any iOS Device (arm64, armv7) 으로 build device 변경 + check build on fvm library version fixed webview_flutter: 2.0.10 #fixed
2021.08.31 -
iOS build issue - 'Flutter/Flutter.h' file not found
'Flutter/Flutter.h' file not found # issue # solution : firebase library version upgrade (2021.08.30) firebase_core: ^1.6.0 firebase_analytics: ^8.0.3 firebase_crashlytics: ^2.2.1 firebase_dynamic_links: ^2.0.9 firebase_messaging: ^10.0.6 flutter_local_notifications: ^8.1.1+1 notification_permissions: ^0.4.8 firebase_remote_config: ^0.10.0+5 firebase_auth: ^3.1.0 http: ^0.13.3 url_launcher: ^6.0..
2021.08.31 -
iOS build issue - Error running pod install
Error running pod install # issue # solution % cd ios % pod install --repo-update ### if error occurs % rm Podfile.lock % pod install --repo-update
2021.08.31 -
Xcode 단축키 설정
# 터미널 열기 출처 : medium.com/@sohrab.iosdev/open-terminal-from-xcode-b34703d442ba # 라인 복사 & 줄바꿈 open /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources sudo chmod 777 /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources IDETextKeyBindingSet.plist 파일에 아래 텍스트 붙여넣기 User Custom Duplicate Line Down moveToBeginningOfLine:, deleteToEndOfLine:, yank:, insertNewline:, mo..
2020.12.03 -
git 명령어
# commit 로그 $ git log # commit 로그 수정 $ git commit --amend # commit 취소 // [방법 1] commit을 취소하고 해당 파일들은 staged 상태로 워킹 디렉터리에 보존 $ git reset --soft HEAD^ // [방법 2] commit을 취소하고 해당 파일들은 unstaged 상태로 워킹 디렉터리에 보존 $ git reset --mixed HEAD^ // 기본 옵션 $ git reset HEAD^ // 위와 동일 $ git reset HEAD~2 // 마지막 2개의 commit을 취소 // [방법 3] commit을 취소하고 해당 파일들은 unstaged 상태로 워킹 디렉터리에서 삭제 $ git reset --hard HEAD^ # reset ..
2020.04.03