profile
k-힙합을 사랑하는 개발자
post-thumbnail

Xcode 14.3 업데이트 후 빌드 에러

1. CocoaPods Build Target Issue 해결법 얼마전에 Xcode를 14.3으로 올리고 나서 기존 프로젝트를 빌드하려고 하니 오류가 났다. 구글링을 해보니, CocoaPods 모듈들 Build Target을 잡지 못해 생기는 오류란다. 1) Podfile에 Build target setting 구문 추가 2) pod install 수행 3) 이제 Run을 돌려 Simulator나 iPhone에 돌려보면 잘된다.... 2. CocoaPods Archive Issue 해결법 열

2023년 4월 28일
·
2개의 댓글
·
post-thumbnail

M1 Chip Flutter iOS pod install 오류

flutter로 iOS 빌드시 pod install 에서 install 오류가 난다. >참조: https://velog.io/@hssarah/flutter-Searching-for-inspections-failed-undefined-method-map-for-nilNilClass 위 링크를 참조 해보았으나, 해결 실패. 결국 정답은 Podfile.lock 생성이 안되는 문제였다. > 참조 : https://github.com/miguelpruivo/flutterfilepicker/issues/1038 [참조내용] The reason finally found is that the mac pod install command of the m1 chip does not generate the Podfile.lock file. The solution is to use the mac pod install command of the **intel chip

2023년 1월 26일
·
0개의 댓글
·
post-thumbnail

(iOS)ReplayKit을 이용한 화면 녹화 기능 만들기

목적 : iPhone 화면 녹화 기능 만들기 ReplayKit ReplayKit는 개발자가 앱에 녹화 및 라이브 방송 기능을 추가할 수 있도록 하는 베타 프레임워크입니다. Reference 문서는 하단 링크를 통해 확인이 가능합니다. > ReplayKit 설명 ReplayKit 개발자 문서 ReplayKit 영상 iOS 9.0+ 부터 사용가능한 Framework 입니다. (f

2022년 4월 20일
·
0개의 댓글
·
post-thumbnail

(iOS) Firebase Remote Config , Realtime DataBase 적용

목적 : Firebase Remote Config와 Firebase Realtime Database를 이용해 보기 Firebase 에서는 앱 개발에 있어서 정말 유용한 기능들을 많이 제공하고 있습니다. Firebase 문서 개요 이동 저는 이 중에서 실시간 데이터베이스(Real-time Database)나 원격 구성(Remote Config)를 이용하는 기능을 만들어보려고 합니다. (기존 레퍼런스문서에서도 너무 잘 설명되어 있긴 하지만, 저는 cocoaPods를 이용하여 기존 프로젝트에도 쉽게 적용시키기 위한 내용으로 제공해보고자 합니다.) 1. Xcode Project 생성 Xcode를 켜고 Create new projec

2022년 3월 30일
·
0개의 댓글
·