From aca600212ff84587e15aad341babd5eb2faf69a5 Mon Sep 17 00:00:00 2001 From: lpw Date: Sat, 03 Jun 2023 09:15:01 +0800 Subject: [PATCH] 3.15.0 --- frameworks/GoogleUtilities.xcframework/tvos-arm64/GoogleUtilities.framework/Headers/GULKeychainStorage.h | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/frameworks/GoogleUtilities.xcframework/tvos-arm64/GoogleUtilities.framework/Headers/GULKeychainStorage.h b/frameworks/GoogleUtilities.xcframework/tvos-arm64/GoogleUtilities.framework/Headers/GULKeychainStorage.h index dc01a83..af10cb4 100644 --- a/frameworks/GoogleUtilities.xcframework/tvos-arm64/GoogleUtilities.framework/Headers/GULKeychainStorage.h +++ b/frameworks/GoogleUtilities.xcframework/tvos-arm64/GoogleUtilities.framework/Headers/GULKeychainStorage.h @@ -20,7 +20,10 @@ NS_ASSUME_NONNULL_BEGIN -/// The class provides a convenient abstraction on top of the iOS Keychain API to save data. +/// The class provides a convenient, multiplatform abstraction of the Keychain. +/// +/// When using this API on macOS, the corresponding target must be signed with a provisioning +/// profile that has the Keychain Sharing capability enabled. @interface GULKeychainStorage : NSObject - (instancetype)init NS_UNAVAILABLE; @@ -72,7 +75,7 @@ /// If not `nil`, then only this keychain will be used to save and read data (see /// `kSecMatchSearchList` and `kSecUseKeychain`. It is mostly intended to be used by unit tests. @property(nonatomic, nullable) SecKeychainRef keychainRef; -#endif // TARGET_OSX +#endif // TARGET_OS_OSX @end -- Gitblit v1.8.0