본문 바로가기
반응형

Xcode4

[Xcode] libarclite_iphonesimulator.a (Error solved) [Xcode] libarclite_iphonesimulator.a Error solved 문제 상황 (Problem) 아래의 에러 메시지가 발생함 File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/a rc/libarclite_iphonesimulator.a 해결 방법 (Way to solve) Podfile을 열어서 제일 아래 부분의 post_install을 아래와 같이 변경한다. post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_set.. 2023. 7. 25.
xcode firebase sdk 적용 방법 xcode firebase sdk 적용 방법 mac os 환경에서 앱을 빌드할 때, 구글 firebase관련하여 의존성 문제가 생기곤 한다. 이 문제는 firebase sdk를 인식하지 못하는 문제로서 필요한 plist파일 등록 및 리빌드하면 된다. 해결 방법 순서 Firebase console에 접속 iOS앱에 Firebase추가 진입 후, GoogleService-info.plist 다운로드 xcode프로젝트에 GoogleService-info.plist 추가 후 리빌드 빌드 성공 확인 2023. 1. 21.
[ios] Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". [ios] Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". 문제 상황 ios 앱을 빌드했더니 이러한 에러 메시지가 나오면서 빌드에 실패한다. Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". 해결 방법 ios/Flutter/Runner/Assets.xcassets/ 아래에 AppIcon.appiconset을 추가한다. 아이콘 모음을 생성하고 추가하는 방법은 아래 글을 .. 2023. 1. 14.
[ios][flutter] Warning: CocoaPods not installed. Skipping pod install [ios][flutter] Warning: CocoaPods not installed. Skipping pod install 개요 맥에서 플러터 앱을 ios버전으로 빌드할 때 아래와 같은 에러가 발생할 때가 있다. Warning: CocoaPods not installed. Skipping pod install 해결 방법 1. 이럴 땐 아래 명령어를 터미널에 입력하자. sudo gem install cocoapods 2. 위 명령어가 안될 때는 homebrew를 사용하자. (아래 명령어 실행) brew install cocoapods 2023. 1. 14.
반응형