Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Latest commit

 

History

History
59 lines (43 loc) · 1.85 KB

File metadata and controls

59 lines (43 loc) · 1.85 KB

Android Components > Feature > WebAuthn

A feature that provides WebAuthn functionality for supported engines.

Usage

Add the feature to the Activity/Fragment:

val webAuthnFeature = WebAuthnFeature(
    engine = GeckoEngine,
    activity = requireActivity()
)

Note: If the feature is on the fragment, ensure that onActivityResult calls from the activity are forwarded to the fragment.

Allow the feature to consume the onActivityResult data:

override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
   webAuthFeature.onActiviyResult(requestCode, data, resultCode)
}

As with other features in Android Components, WebAuthnFeature implements LifecycleAwareFeature, so it's recommended to use ViewBoundFeatureWrapper to handle the lifecycle events of the feature:

private val webAuthnFeature = ViewBoundFeatureWrapper<WebAuthnFeature>()

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View {
    webAuthnFeature.set(
        feature = WebAuthnFeature(
            engine = GeckoEngine,
            activity = requireActivity()
        ),
        owner = this,
        view = view
    )
}

override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
    webAuthnFeature.onActivityResult(requestCode, data, resultCode) }
}

Setting up the dependency

Use Gradle to download the library from maven.mozilla.org (Setup repository):

implementation "org.mozilla.components:feature-webauthn:{latest-version}"

License

This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/