ios,swift2023. 5. 18. 19:56

[ios]pod init 이후에, xcworkspace 생기지 않는 이슈 해결방법

 

pod init 하면 pod 파일이 생긴다..

 

pod 에서 라이브러리 하나 등록하고 pod install , pod update 할려고 한다..

 

그런데 

 

Unable to determine the platform for the target

 

이슈가 나온다..

 

처음에 생긴게

 

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'TestPod' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!
  # Pods for TestPod

pod 'Firebase/Messaging'

  target 'TestPodTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'TestPodUITests' do
    # Pods for testing
  end

end

# platform :ios, '9.0' -> # 지우면 된다...

 

[참조] https://stackoverflow.com/questions/52040910/please-specify-a-platform-for-this-target-in-your-podfile

 

Please specify a platform for this target in your Podfile?

I want to config Firebase Firestore. I followed all the steps, but at the last step, I got the error link below I mention. After Executing this pod install command below error I got [!] Automatica...

stackoverflow.com

 

Posted by thdeodls85