본문 바로가기

Flutter62

Flutter - Error: CocoaPods's specs repository is too out-of-date to satisfy dependencies. 내용 : Error: CocoaPods's specs repository is too out-of-date to satisfy dependencies. 해결책 1. Go to /ios folder inside your Project. 2. Delete Podfile.lock (YourPoject/ios/Podfile.lock) 3. Here you have to do it according to the chip of your Mac, here I have given for both. thanks @Kamal Panara for identified this For Intel chip users Run pod install --repo-update (Make sure your cd into the iOS d.. 2022. 2. 8.
Firebase Functions with Flutter Firebase 에 서버처럼 백엔드 코드를 실행할 수 있는 서버리스 프레임워크 https://firebase.google.com/docs/functions/get-started 시작하기: 첫 번째 함수 작성, 테스트, 배포 | Firebase Documentation 의견 보내기 시작하기: 첫 번째 함수 작성, 테스트, 배포 Cloud Functions를 시작하려면 이 튜토리얼을 따라해 보세요. 이 튜토리얼은 필수 설정 작업부터 시작해 다음과 같은 관련 함수 두 개를 만들 firebase.google.com Firebase Functions 와 앱 통신 테스트 코드 (동작 확인 코드 / 2022.02.04) https://codewithandrea.com/articles/flutter-tutorial-f.. 2022. 2. 4.
Firebase - Crashlytics / 스택 추적이 안된다.... Flutter - iOS 개발 상황 : dSYM 파일 업로드 되어있음. 테스트 삼아서 로그인 하는 곳에서 크래쉬를 일으켰다. FirebaseCrashlytics.instance.crash(); 하지만 아래와 같이 로그가 나오기때문에, 트래킹이 불가능한 상황이다. 뭐가 문제인지 모르겠다. Log std::__1::__function::__func::operator()() 2022. 1. 24.
Flutter - error Unable to install /Users/hoon/AndroidStudioProjects/medication_manage/build/ios/iphonesimulator/Runner.app on 83A2E900-4206-4EFD-A263-0B5E1D56AF8A. This is sometimes caused by a malformed plist file: ProcessException: Process exited abnormally: An error was encountered processing the command (domain=NSPOSIXErrorDomain, code=22): Failed to install the requested application The bundle identifier o.. 2022. 1. 19.
Flutter - TextField Flutter TextFiled Cursor 위치시키는 방법 var _controller = TextEditingController(); _controller.selection = TextSelection.fromPosition(TextPosition(offset: controller.text.length)); ... TextField( controller: _controller, ... ) 위의 코드는 TextFiled 의 맨 마지막에 Cursor 를 위치시키는 방법 2022. 1. 19.
Flutter - iOS 앱 업로드 for TestFlight Flutter 에서 iOS 앱 업로드를 하는 방법을 단계별로 설명합니다. 1. Xcode 를 동작한다. 2. 최상단 메뉴바에서 Product -> Archive 를 눌러준다 여기서 Archive 가 누를 수 없는 상태(비활성화)일 수도 있다. 그때는 Runner를 하는 대상이 에뮬레이터가 아니고 실제 디바이스를 대상으로 한지 체크해봐야 합니다. 참고 3. 빌드가 끝나면 업로드 작업을 할 수 있는 화면이 보인다. 그리고최신 빌드 버전이 상단에 보일테니 우측에 Distribute App 을 누른다. 4. 쭉쭉 진행한다. 2022. 1. 12.