Xcode 未检测库..在范围内找不到 Firebase 'FaceDetectorOptions'

Xcode is not detecting library..Cannot find Firebase 'FaceDetectorOptions' in scope

我正在尝试在我的应用程序中使用 Firebase FaceDetector,但我不断收到错误 =“无法在范围内找到 'FaceDetectorOptions'”,似乎 Xcode 无法检测到 FireBase“GoogleMLKit/FaceDetection" 库,即使我清理我的应用程序的构建文件夹,重新启动应用程序并更新我的 PodFile .....我仍然收到此错误

这是我的 Podfile

pod 'Firebase/Auth'
pod 'Firebase/Analytics'
pod 'GoogleSignIn'
pod 'Google-Mobile-Ads-SDK'
pod 'GoogleMLKit/TextRecognition'
pod 'GoogleMLKit/FaceDetection'

end

这是我的 Xcode 代码

  import Firebase

    override func viewDidLoad() {
    super.viewDidLoad()
     
     let options = FaceDetectorOptions()     //ERROR : Cannot find 'FaceDetectorOptions' in scope
    }

这是 google MLKIT 的 link: https://developers.google.com/ml-kit/vision/face-detection/ios

添加

import MLKit

到文件顶部