You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ChipDeviceController.java - consider replacing setUseJavaCallbackForNOCRequest with an implicit check for the assignment of the constructor from AndroidOperationalCredentialsIssuer::GenerateNOCChain
ChipDeviceController.java onNOCChainGenerationNeeded - consider breaking arguments into separate objects to reduce the parameter count and also make it less likely to mix up the parameters (since they are all of type byte[]), eg:
class NOCChainParams {
byte[] getCsrElements()
byte[] getCsrNonce()
}
ControllerParams.java - consider isolate fields like attemptNetworkScanWiFi and attemptNetworkScanThread into some wrapper class like AutoCommissionerConfig to make clear that they apply to AutoCommissioner.
Problem
(from #21522)
Proposed Solution
The text was updated successfully, but these errors were encountered: