I'm new to coding on Xcode and im trying to install Firebase on my project but i have an error that I don't know how to solve. I have followed all the instructions from Firebase but still have the issue…
First issue:
Dependencies could not be resolved because no versions of 'GoogleAppMeasurement' match the requirement 8.12.0 and root depends on 'GoogleAppMeasurement' 8.12.0. Failed to resolve dependencies
Second issue:
no such module 'Firebase'
Cannot find 'FirebaseApp' in scope
import UIKit
import Firebase
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
FirebaseApp.configure()
return true
}
How can I fix it?
Thanks for the help :)