Я хочу настроить Firebase Firestore. Я прошел весь шаг, но на последнем шаге я получил ссылку об ошибке ниже, о которой я упомянул.
После выполнения этой установки pod Комментарий ниже ошибка, которую я получил
[!] Автоматическое назначение платформы ios
с версией 11.4
в
target testing_gowtham
, потому что платформа не была указана. пожалуйста
укажите платформу для этой цели в вашем Podfile. Увидеть
https://guides.cocoapods.org/syntax/podfile.html#platform
.
Мой PodFile:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'testing_gowtham' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for testing_gowtham
target 'testing_gowthamTests' do
inherit! :search_paths
# Pods for testing
end
target 'testing_gowthamUITests' do
inherit! :search_paths
# Pods for testing
end
pod 'Firebase/Core'
pod 'Firebase/Firestore'
end
Я видел это https://guides.cocoapods.org/syntax/podfile.html#platform, но я не нашел, какую строку мне нужно изменить.
Как решить эту проблему?