Notice
Recent Posts
Recent Comments
Link
250x250
«   2025/01   »
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
Tags more
Archives
Today
Total
관리 메뉴

혼자서 앱 만드는 개발자 함께하는 AI 세상

플러터 ios 셋팅 작업 2023.11.29 일 본문

플러터 앱개발

플러터 ios 셋팅 작업 2023.11.29 일

혼앱사 2023. 11. 29. 21:12
반응형

요즘 프로젝트에서 다시 플러터 ios 포팅을 위해 맥북 ios를 꺼내 들었다.
우선 앞서 피그마로 테스트해서 getx 기반에 소스를 윈도우로 작업해서 github에 올리고 맥북에서 받아서 xcode로 작업해보기로 했다.
https://github.com/bastokr/FLUTTER_IOS_APP

GitHub - bastokr/FLUTTER_IOS_APP

Contribute to bastokr/FLUTTER_IOS_APP development by creating an account on GitHub.

github.com

 
여전히 애러부터 눈이 뛴다.
Analyzing dependencies
[!] Unable to find a target named `RunnerTests` in project `Runner.xcodeproj`, did find `Runner`.

[!] Automatically assigning platform `iOS` with version `10.0` on target `Runner` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.
밑에 검색 자료에서 해결책이 있어서 뭔지 모르지만 처리했다.

아이폰에서 앱 구동 시 발생하는 cocoapods 에러에 대해 알아보자.

출처: https://blog.dglee.co.kr/34 [모르는게 많은 개발새발 블로그:티스토리]

Podfile 수정하기

ios/Podfile 경로로 가서 아래의 platform 설정의 주석을 해제합니다.

# Uncomment this line to define a global platform for your project
platform :ios, '11.0'

수정 후 다시 실행하니 다른 에러가 또 발생하네요.

[!] Unable to find a target named `RunnerTests` in project `Runner.xcodeproj`, did find `Runner`.

로그를 확인해 보니 Runner.xcodeproj에서 RunnerTests라는 타겟을 찾지 못했다는 내용인 것 같습니다.
다시 ios/Podfile로 가서 아래와 같은 부분을 찾아서 RunnerTests 관련 항목을 주석 처리 합니다.

target 'Runner' do
  use_frameworks!
  use_modular_headers!

  flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
  # target 'RunnerTests' do
  #   inherit! :search_paths
  # end
end

이처럼 수정하고 다시 실행하니 pod install을 수행한 이후 빌드되어 정상적으로 아이폰에서 앱 구동이 되는 것을 확인했습니다.
출처: https://blog.dglee.co.kr/34 [모르는게 많은 개발새발 블로그:티스토리]

그리고 인스톨이 이루워 졌다
그리고 디버깅이 되는지 휴대폰을 연결하고 저는 ios7를 가지고 있는데 디바이스가 없다고 해서 다운받기로 했다

https://stackoverflow.com/questions/77218811/could-not-download-and-install-ios-17-0-simulator-runtime-with-xcode-15-0
 
 

Could not download and install iOS 17.0 Simulator runtime with Xcode 15.0

I'm getting an issue when attempting to install the iOS 17.0 simulator in Xcode 15.0. The problem is when Xcode updated to version 15, and now all the simulators I had previously downloaded have

stackoverflow.com

xcodebuild -downloadPlatform iOS

https://www.wafrat.com/fixing-error-ios-17-0-is-not-installed-to-use-with-xcode-first-download-and-install-the-platform/

Fixing `error:iOS 17.0 is not installed. To use with Xcode, first download and install the platform`

Today Fastlane failed deploying an iOS update of my app to the Store with the following error: error:iOS 17.0 is not installed. To use with Xcode, first download and install the platform So I opened my project in XCode. The Run button is disabled, and on t

www.wafrat.com

위자료들을 찾을수있다..
여전히 빌드 하다 오류가 발생했다

관련이슈들을 찾아보았다.
https://github.com/fluttercommunity/plus_plugins/issues/2166

[connectivity_plus][Bug]: Crash app at startup when build on macos 14.0 and xcode 15 · Issue #2166 · fluttercommunity/plus_plu

Platform MacOs 14+ Xocde 15 Plugin connectivity_plus Version 4.0.2 Flutter SDK 3.13.5 Steps to reproduce Update macos to version 14 and xcode 15 or greater Add plugin to pubpspec build Project on M...

github.com

 

connectivity_plus 저부분을 제거해보기로 했다.

 
안정적으로 아이폰에서 뜨는걸 확인 했다 이제 단계별로 로그인 채팅 기능부터 다시 적용해볼 예정이다.

728x90
반응형
Comments