The Passwordless.dev Android client SDK gives users the ability to leverage their device’s built-in fingerprint sensor and/or FIDO security keys for secure passwordless access to websites and native applications that support the FIDO2 protocols
- Android 9.0 (API level 28) or higher
- Java 8 or higher
- Completed 'Get started' guide.
Apache Maven
<dependency>
<groupId>com.bitwarden</groupId>
<artifactId>passwordless-android</artifactId>
<version>2.0.0</version>
</dependency>
Gradle Kotlin DSL
implementation("com.bitwarden:passwordless-android:2.0.0")
Gradle Groovy DSL
implementation 'com.bitwarden:passwordless-android:2.0.0'
When the library has been added to your app, the following permission will be added to your AndroidManifest.xml
automatically when the app is being built.
It is not necessary for you to add the following permission.
<uses-permission android:name="android.permission.INTERNET" />
data class PasswordlessOptions(
// Your public API key
val apiKey: String,
// Identifier for your server, for example 'example.com' if your backend is hosted at https://example.com.
val rpId: String,
// Where your backend is hosted
val backendUrl:String,
// Passwordless.dev server, change for self-hosting
val apiUrl: String = "https://v4.passwordless.dev"
)
In your application's AndroidManifest.xml
, you will then need to add the tag below under manifest::application
:
<meta-data
android:name="asset_statements"
android:resource="@xml/assetlinks" />
In your application's res/xml/assetlinks.xml
, you will then need to add the following content. This will tell our Android application where our .well-known/assetlinks.json
file is hosted.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="assetlinks">https://yourexample.com/.well-known/assetlinks.json</string>
</resources>
To configure your backend, you'll need to host a .well-known/assetlinks.json
file at the root of your domain. This file contains a list of SHA-256 certificate fingerprints that are allowed to authenticate with your backend.
This command will print detailed information about the keystore entry with the specified alias, including information about the certificate, its validity, and other details. It's commonly used in Android development to verify the properties of the debug keystore and the associated key used for signing applications during development.
- Option 1:
- MacOS & Linux:
keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android
- Windows:
keytool -list -v -keystore "%USERPROFILE%\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android
- MacOS & Linux:
- Option 2:
Go to the root directory of the project from the terminal and run the below command
Put this SHA256 along with your root android package name in your backend to generate
./gradlew signingReport
assetlinks.json
for your app athttps://yourexample.com/.well-known/assetlinks.json
. If you are usingexample-nodejs-backend
. then just put these 2 values in your.env
file.
You will need store the following file at https://<your-domain>/.well-known/assetlinks.json
. To generate the SHA256 hash, read the links below the snippet.
You may also have to change the 'target::namespace' and 'target::package_name' properties to match your application's.
[
{
"relation": [
"delegate_permission/common.handle_all_urls",
"delegate_permission/common.get_login_creds"
],
"target": {
"namespace": "web"
}
},
{
"relation": [
"delegate_permission/common.handle_all_urls",
"delegate_permission/common.get_login_creds"
],
"target": {
"namespace": "android_app",
"package_name": "com.example.myapplication",
"sha256_cert_fingerprints": [
"3C:E2:29:94:E2:DE:1E:EB:E5:F9:70:10:72:41:F4:0F:06:38:61:BD:72:76:79:CA:72:68:67:FA:38:9B:65:B9"
]
}
}
]
You can either set the ActivityContext
and CoroutineScope
by injecting it with Dagger Hilt as follows:
@Module
@InstallIn(ActivityComponent::class)
class PasswordlessModule {
@Provides
fun provideLifecycleCoroutineScope(activity: Activity): LifecycleCoroutineScope =
(activity as AppCompatActivity).lifecycleScope
@Provides
@ActivityScoped
fun providePasswordlessClient(
@ActivityContext activity: Context, scope: LifecycleCoroutineScope): PasswordlessClient {
val options = PasswordlessOptions(
DemoPasswordlessOptions.API_KEY,
DemoPasswordlessOptions.RP_ID,
DemoPasswordlessOptions.ORIGIN,
DemoPasswordlessOptions.API_URL
)
return PasswordlessClient(options, activity, scope)
}
}
Or you can set the Context of PasswordlessClient manually: Ensure the context is set to the current Activity
.
/** Context needs to be set according to current activity
* If there are different activity handling register and signin,
* then call this on every activity
*/
_passwordless.setContext(this)
Set the coroutine scope, passing lifecycleScope of the current fragment, only necessary if you again do not use Dagger Hilt.
_passwordless.setCoroutineScope(lifecycleScope)
- Call Your Backend with User Details:Make a call to your backend with user details (e.g., username, alias) and retrieve the registration token.
- Call Passwordless Register Function
_passwordless.register(
token =responseToken,
nickname = nickname
) { success, exception, result ->
if (success) {
Toast.makeText(context, result.toString(), Toast.LENGTH_SHORT).show()
} else {
Toast.makeText(
context,
"Exception: " + getPasskeyFailureMessage(exception as Exception),
Toast.LENGTH_SHORT
).show()
}
}
- Take Alias as Input: Gather the alias as input from the user.
- Call Passwordless Login: Initiate the login process with the alias and response callback.
_passwordless.login(alias) { success, exception, result ->
if (success) {
lifecycleScope.launch {
val clientDataResponse =
httpClient.login(UserLoginRequest(result?.token!!))
if (clientDataResponse.isSuccessful) {
val data = clientDataResponse.body()
showText(data.toString())
}
}
} else {
showException(exception)
}
}