From 8fa52d6d93a9c60f5a09b5fd1c80b3a9c35046d0 Mon Sep 17 00:00:00 2001 From: lpw Date: Mon, 15 Apr 2024 11:25:12 +0800 Subject: [PATCH] 提交3.18.0 --- frameworks/FirebaseInstallations.xcframework/macos-arm64_x86_64/FirebaseInstallations.framework/Headers/FIRInstallationsErrors.h | 21 +++++++++++---------- 1 files changed, 11 insertions(+), 10 deletions(-) diff --git a/frameworks/FirebaseInstallations.xcframework/macos-arm64_x86_64/FirebaseInstallations.framework/Headers/FIRInstallationsErrors.h b/frameworks/FirebaseInstallations.xcframework/macos-arm64_x86_64/FirebaseInstallations.framework/Headers/FIRInstallationsErrors.h index d0c3b99..939ca0a 100644 --- a/frameworks/FirebaseInstallations.xcframework/macos-arm64_x86_64/FirebaseInstallations.framework/Headers/FIRInstallationsErrors.h +++ b/frameworks/FirebaseInstallations.xcframework/macos-arm64_x86_64/FirebaseInstallations.framework/Headers/FIRInstallationsErrors.h @@ -16,19 +16,20 @@ #import <Foundation/Foundation.h> -extern NSString *const kFirebaseInstallationsErrorDomain; +extern NSString *const kFirebaseInstallationsErrorDomain NS_SWIFT_NAME(InstallationsErrorDomain); -typedef NS_ENUM(NSUInteger, FIRInstallationsErrorCode) { - /** Unknown error. See `userInfo` for details. */ - FIRInstallationsErrorCodeUnknown = 0, +typedef NS_ERROR_ENUM(kFirebaseInstallationsErrorDomain, FIRInstallationsErrorCode){ + /** Unknown error. See `userInfo` for details. */ + FIRInstallationsErrorCodeUnknown = 0, - /** Keychain error. See `userInfo` for details. */ - FIRInstallationsErrorCodeKeychain = 1, + /** Keychain error. See `userInfo` for details. */ + FIRInstallationsErrorCodeKeychain = 1, - /** Server unreachable. A network error or server is unavailable. See `userInfo` for details. */ - FIRInstallationsErrorCodeServerUnreachable = 2, + /** Server unreachable. A network error or server is unavailable. See `userInfo` for details. */ + FIRInstallationsErrorCodeServerUnreachable = 2, - /** FirebaseApp configuration issues e.g. invalid GMP-App-ID, etc. See `userInfo` for details. */ - FIRInstallationsErrorCodeInvalidConfiguration = 3, + /** FirebaseApp configuration issues e.g. invalid GMP-App-ID, etc. See `userInfo` for details. + */ + FIRInstallationsErrorCodeInvalidConfiguration = 3, } NS_SWIFT_NAME(InstallationsErrorCode); -- Gitblit v1.8.0