본문 바로가기 메뉴 바로가기

개키우는 개발자

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

개키우는 개발자

검색하기 폼
  • 분류 전체보기 (36)
    • IT (33)
      • 프로그래밍 (15)
      • 모바일 (13)
      • DB (3)
      • OS (2)
    • 하고싶은거 해보자구 (2)
      • 창업일지 (0)
      • 수경재배 (1)
      • 곤충키우기 (0)
      • 우리집 단풍이 (0)
      • 창업 아이디어 기록하기 (1)
  • 방명록

IT (33)
[Flutter] Error (Xcode): Building for 'iOS-simulator', but linking in object file (/ios/Pods/MLImage/Frameworks/MLImage.framework/MLImage[arm64][2](GMLImage.o)) built for 'iOS'

이전 포스팅에 이어서... Error (Xcode): Building for 'iOS-simulator', but linking in object file (/Users/dean/Documents/dev/flutter/butler/ios/Pods/MLImage/Frameworks/MLImage.framework/MLImage[arm64][2](GMLImage.o)) built for 'iOS' 에러가 발생했다.. arm64라고 붙어있는거 보니 xcode에서 bulid setting을 바꿔주면 되겠구나 싶어서 바꿔보았다. 기존에는 이렇게 되어있는데 arm64로 다 바꿔주고 혹시 몰라서 podfile.lock과 pods 폴더를 삭제했다. rm -rf podfile.lock rm -rf pods pod cac..

IT/프로그래밍 2023. 11. 30. 13:06
[Flutter] Lexical or Preprocessor Issue (Xcode): "openssl/ssl.h' file not found /ios/Pods/gRPC-Core/src/core/tsi/ssl/key_logging/ssl_key_logging.h:22:9 에러 해결하기

이전 글에 이어 이어쓰기.. 사실 나는 빌드가 안됐다.. flutter 버전을 3.13.9에서 3.16.1로 변경하는 바람에.. photo_manager를 쓰고있는 라이브러리가 있어서 이렇게 에러가 발생했는데.. 아직 photo_manager가 3.16.1에 대해 정식적으로 지원하지않고 프리 릴리즈라서 flutter를 다운그레이드 하는게 낫겠다 싶어서 3.13.9로 다운 그레이드를 하고 빌드를 했더니 Lexical or Preprocessor Issue (Xcode): "openssl/ssl.h' file not found /ios/Pods/gRPC-Core/src/core/tsi/ssl/key_logging/ssl_key_logging.h:22:9 아... 이건 또 뭐여.. arch -arm64 bre..

IT/프로그래밍 2023. 11. 30. 12:59
[Flutter] Mas os sonoma 업데이트 이후 git 명령어 설치했는데도 계속 설치하라고 뜨고 시뮬레이터가 켜져있는데도 flutter offline enulators로 뜨는 문제 해결방법

ios 개발할때야 mac os 업데이트 이후 xcode만 업데이트만 하면 바로 개발이 가능했던거 같은데.. flutter로 개발할때 mac os 업데이트를 해본 적이 없어서 자꾸 업데이트 암호를 입력하라고 창이 떠서 결국 업데이트를 했다. 먼저 xcode를 앱스토어에서 업데이트하고 빌드를 해봤는데 이렇게 뜨고 아래와 같은 git을 자꾸 설치하라고 뜬다.. 설치를 했는데도 계속 뜬다.. brew install git을 해서 install을 했는데 m1부터는 brew를 설치할때 arch -arm64 를 앞에 붙이고 arch -arm64 brew install git 이런 식으로 해야 설치가 된다 안 그럼 Error: Cannot install under Rosetta 2 in ARM default prefi..

IT/프로그래밍 2023. 11. 30. 11:53
[Flutter] pubspec.yaml assets 하위 디렉토리 자동으로 작성해주는 라이브러리

Flutter에서 assets안에 폴더를 추가하면 경로를 일일이 추가해줘야하는 경우가 많다. assets 하위에 폴더가 계속 생성되면 자동으로 추가해주는 라이브러리가 없을까 찾아보다보니 asset_fill이라는 라이브러리가 있어 사용해보았다. 1. 터미널에서 flutter pub add asset_fill 를 프로젝트 폴더에서 실행하여 asset_fill을 추가한다. 2. pubspec.yaml에서 flutter: assets: - assets/ 이렇게 assets: 하위에 - assets/을 추가한다 (이미 디렉토리가 추가되어있는 경우 그냥 아무것도 안해도된다.) 3. flutter pub run asset_fill 를 터미널에서 입력한다. 그럼 아래와 같은 이미지가 처럼 실행이 된다. 4. pubsp..

IT/프로그래밍 2023. 9. 21. 12:00
[Flutter] Uncaught MissingPluginException(No implementation found for method Analytics#logEvent on channel plugins.flutter.io/firebase_analytics) 해결방법

.... 1. flutter clean 2. flutter pub get 하면 해결된다.. 오늘도 열심히 삽질중..

IT/프로그래밍 2023. 8. 19. 15:18
[flutter] @firebase/app-check: FirebaseError: AppCheck: ReCAPTCHA error. (appCheck/recaptcha-error). 해결방법

이전에 앱 체크를 설치했었는데 웹을 배포하고 실행해보니 앱체크가 제대로 작동하지 않아 확인되지 않음으로 들어오고 realtime database의 값을 가져오지 못하는 문제가 발생하고 있었다. 개발자 콘솔에는 @firebase/app-check: FirebaseError: AppCheck: ReCAPTCHA error. (appCheck/recaptcha-error). 에러가 계속 발생하고.. firebase 공식 문서 상에는 앱체크 초기화만 해주면 된다고 이렇게 소스가 나와있었는데 import 'package:flutter/material.dart'; import 'package:firebase_core/firebase_core.dart'; // Import the firebase_app_check p..

IT/프로그래밍 2023. 8. 19. 14:54
이전 1 2 3 4 5 6 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • com.google.android.gms.common.api.ApiException: 10:
  • python3.12 설치
  • aws python3.12
  • EC2
  • ITMS-91053: Missing API declaration
  • 슬랙으로 보내기
  • ios 앱 심사상태
  • NSPrivacyAccessedAPICategoryUserDefaults
  • 아이폰
  • Response: Failure when receiving data from the peer
  • 리눅스 python3 설치
  • Failed to launch iOS Simulator: Error: Emulator didn't connect within 60 seconds
  • flutter build ipa
  • ios pod install error
  • NSPrivacyAccessedAPICategoryDiskSpace
  • but linking in object file
  • PlatformException(sign_in_failed
  • CDN: trunk URL couldn't be downloaded
  • 수경재배키트
  • NSPrivacyAccessedAPICategorySystemBootTime
  • Firebase
  • 베란다 수경재배
  • 해결방법
  • Xcode
  • MySQL
  • NSPrivacyAccessedAPICategoryFileTimestamp
  • google play appcheck
  • Error (Xcode): Target release_unpack_ios failed: Exception: Binary
  • Flutter
  • ios
more
«   2025/10   »
일 월 화 수 목 금 토
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바