From a8889d12a27ef7006d1a47dfefc272e0815f5c41 Mon Sep 17 00:00:00 2001 From: Johnson Lu Date: Mon, 14 Jul 2025 18:17:56 -0700 Subject: [PATCH] Add enableBLEV2() to ConnectionManager PiperOrigin-RevId: 783118129 --- .../swift/NearbyConnections/Sources/ConnectionManager.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/connections/swift/NearbyConnections/Sources/ConnectionManager.swift b/connections/swift/NearbyConnections/Sources/ConnectionManager.swift index 9130458c..47da8c2f 100644 --- a/connections/swift/NearbyConnections/Sources/ConnectionManager.swift +++ b/connections/swift/NearbyConnections/Sources/ConnectionManager.swift @@ -213,6 +213,11 @@ public class ConnectionManager { withCompletionHandler: completionHandler ) } + + /// Enable BLEV2. + public func enableBLEV2() { + GNCFlags.enableBLEV2 = true + } } extension ConnectionManager: InternalPayloadDelegate {