❗ Important! Before you proceed, please read the EUDI Wallet Reference Implementation project description
This module provides the core and UI functionality for the EUDI Wallet, focusing on the Remote Qualified Electronic Signature (RQES) service.
The EudiRQESUi
object defines methods for setting up and using the SDK. The SDK offers compile-time configuration capabilities through the EudiRQESUiConfig
interface.
- Android 9 (API level 28) or higher
Add the following dependency to your app's build.gradle file to include the library in your project.
dependencies {
implementation("eu.europa.ec.eudi:eudi-lib-android-rqes-ui:$version")
}
Implement the EudiRQESUiConfig
interface and supply all the necessary options for the SDK.
class RQESConfigImpl : EudiRQESUiConfig {
// Optional. Default English translations will be used if not set.
override val translations: Map<String, Map<LocalizableKey, String>> get()
// Optional. Default theme will be used if not set.
override val themeManager: ThemeManager get()
override val rqesServiceConfig: RqesServiceConfig get()
override val qtsps: List<QtspData> get()
// Optional. Default is false.
override val printLogs: Boolean get()
}
Example:
class RQESConfigImpl : EudiRQESUiConfig {
override val rqesServiceConfig: RqesServiceConfig
get() = RqesServiceConfig(
clientId = "your_clientid",
clientSecret = "your_secret",
authFlowRedirectionURI = URI.create("your_registered_deeplink"),
hashAlgorithm = HashAlgorithmOID.SHA_256,
)
override val qtsps: List<QtspData>
get() = listOf(
QtspData(
name = "your_name",
endpoint = "your_endpoint".toUri(),
scaUrl = "your_sca",
)
)
override val printLogs: Boolean get() = BuildConfig.DEBUG
}
Register the authFlowRedirectionURI
in your application's manifest to ensure the RQES Service can trigger your application.
It is the application's responsibility to retrieve the code
query parameter from the deep link and pass it to the SDK to continue the flow.
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="oauth"
android:path="/callback"
android:scheme="rqes://" />
</intent-filter>
Initialize the SDK in your Application class by providing your application context, configuration, and, if you are using Koin for dependency injection, the KoinApplication.
EudiRQESUi.setup(
application = application_context,
config = rqes_config,
koinApplication = koinapplication_if_applicable
)
Start the signing process by providing your activity context and the URI of the selected file.
EudiRQESUi.initiate(
context = activity_context,
documentUri = file_uri
)
Resume the signing process once the authFlowRedirectionURI
triggers your application following the PID presentation process.
Provide your activity context and the extracted code from the authFlowRedirectionURI
deep link.
EudiRQESUi.resume(
context = activity_context,
authorizationCode = code
)
We welcome contributions to this project. To ensure that the process is smooth for everyone involved, follow the guidelines found in CONTRIBUTING.md.
Copyright (c) 2024 European Commission
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.