実現したいこと
お世話になっております。
Swift,Firebase,Cocoa Podsで環境構築を行なっています。
No such module 'FirebaseCore'
とエラーが発生しbuildが上手くいきません。
https://tech.amefure.com/swift-firebase
上記サイトを参考に進めています。
該当のソースコード
App.swift
1// 2// MessageAppApp.swift 3// MessageApp 4// 5// Created by hashimo ryoya on 2023/04/12. 6// 7 8import SwiftUI 9import FirebaseCore // ここで「No such module 'FirebaseCore'」エラー発生 10 11class AppDelegate: NSObject, UIApplicationDelegate { 12 func application(_ application: UIApplication, 13 didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool { 14 FirebaseApp.configure() 15 return true 16 } 17} 18@main 19struct App: App { 20 var body: some Scene { 21 WindowGroup { 22 ContentView() 23 } 24 } 25}
ContentView.swift
1// 2// ContentView.swift 3// MessageApp 4// 5// Created by hashimo ryoya on 2023/04/12. 6// 7 8import SwiftUI 9 10struct ContentView: View { 11 var body: some View { 12 VStack { 13 Image(systemName: "globe") 14 .imageScale(.large) 15 .foregroundColor(.accentColor) 16 Text("Hello, world!") 17 } 18 .padding() 19 } 20} 21 22struct ContentView_Previews: PreviewProvider { 23 static var previews: some View { 24 ContentView() 25 } 26}
Podfile
1# Uncomment the next line to define a global platform for your project 2platform :ios, '9.0'. //コメントアウトは外している 3 4target 'MessageApp' do 5 # Comment the next line if you don't want to use dynamic frameworks 6 use_frameworks! 7 8 # Pods for MessageApp 9 pod 'FirebaseCore' //ここを追加 10end
試したこと
https://github.com/invertase/react-native-firebase/discussions/6339
こちらを参考に下記のように修正しpod install
を行ったが解決しませんでした。
Podfile
1# Uncomment the next line to define a global platform for your project 2platform :ios, '9.0' 3 4target 'MessageApp' do 5 # Comment the next line if you don't want to use dynamic frameworks 6 use_frameworks! 7 8 # Pods for MessageApp 9 pod 'FirebaseCore', :modular_headers => true. //修正 10end
補足情報(FW/ツールのバージョンなど)
swift-driver version: 1.75.2
Xcode 14.3
Build version 14E222b
回答1件
あなたの回答
tips
プレビュー