gpt4 book ai didi

swift - 错误 : Use of unresolved identifier 'FIRApp'

转载 作者:行者123 更新时间:2023-11-28 12:29:03 24 4
gpt4 key购买 nike

我不断收到错误使用未解析的标识符“FIRApp”。我已经删除了派生数据文件夹,更新了 pod,并多次重新安装了 pod。我目前正在使用 xcode 8.2.1。我的 pod 版本是使用火力地堡 (3.14.0)使用 FirebaseAnalytics (3.7.0)使用 FirebaseCore (3.5.1)使用 FirebaseInstanceID (1.0.9)使用 FirebaseMessaging (1.2.2)使用 GoogleToolboxForMac (2.1.1)使用 Protobuf (3.2.0)。我正在使用最新版本的 cocoapods。感谢您的帮助。

import UIKit
import UserNotifications
import Firebase
import FirebaseInstanceID
import FirebaseMessaging

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

var window: UIWindow?
let gcmMessageIDKey = "gcm.message_id"

func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {

// Register for remote notifications. This shows a permission dialog on first run, to
// show the dialog at a more appropriate time move this registration accordingly.
// [START register_for_notifications]
if #available(iOS 10.0, *) {
// For iOS 10 display notification (sent via APNS)
UNUserNotificationCenter.current().delegate = self

let authOptions: UNAuthorizationOptions = [.alert, .badge, .sound]
UNUserNotificationCenter.current().requestAuthorization(
options: authOptions,
completionHandler: {_, _ in })

// For iOS 10 data message (sent via FCM)
FIRMessaging.messaging().remoteMessageDelegate = self

} else {
let settings: UIUserNotificationSettings =
UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil)
application.registerUserNotificationSettings(settings)
}

application.registerForRemoteNotifications()

// [END register_for_notifications]
FIRApp.configure()

// [START add_token_refresh_observer]
// Add observer for InstanceID token refresh callback.
NotificationCenter.default.addObserver(self,
selector: #selector(self.tokenRefreshNotification),
name: .firInstanceIDTokenRefresh,
object: nil)
// [END add_token_refresh_observer]
return true
}

最佳答案

我有同样的问题,并在命令行上执行以下步骤解决了它:

  1. pod 仓库更新
  2. 评论了我的 Podfile 中的 pod 'Firebase' 行
  3. pod 安装(这删除了旧的 Firebase)
  4. 再次添加了 pod 'Firebase' 行。
  5. pod 安装(添加了新的 Firebase)

关于swift - 错误 : Use of unresolved identifier 'FIRApp' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42589345/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com