-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Open
Labels
Description
Is your feature request related to a problem? Please describe.
Firefox 143.0 makes use of this API. We use microG for a free/libre builds of Firefox.
Describe the solution you'd like
Would like to see this API implemented.
Describe alternatives you've considered
The removal of WebAuthn support in our builds of Firefox.
Additional context
The code from Firefox that fails to compile with microG 0.3.9:
final AuthenticationExtensionsClientOutputs extensionsClientOutputsData =
publicKeyCredentialData.getClientExtensionResults();
if (extensionsClientOutputsData != null) {
final AuthenticationExtensionsCredPropsOutputs credPropsOutput =
extensionsClientOutputsData.getCredProps();
if (credPropsOutput != null) {
builder.setCredProps(credPropsOutput.getIsDiscoverableCredential());
}
}
androidguy28