Skip to content

Commit

Permalink
update README.md and docs; correct typo in EudiWallet.kt; prepare for…
Browse files Browse the repository at this point in the history
… followup release 0.12.3
  • Loading branch information
vkanellopoulos committed Dec 11, 2024
1 parent f5ae7a1 commit 09b6b51
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -822,6 +822,9 @@ wallet.addTransferEventListener { event ->

is TransferEvent.Redirect -> {
// A redirect is needed. Used mainly for the OpenId4VP implementation
// This is triggered when Relaying Party (RP) has accepted the response and
// the RP is redirecting the user to the given redirect URI
// If this event is triggered, then the TransferEvent.ResponseSent event will not be triggered
val redirectUri = event.redirectUri // the redirect URI
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ systemProp.sonar.host.url=https://sonarcloud.io
systemProp.sonar.gradle.skipCompile=true
systemProp.sonar.coverage.jacoco.xmlReportPaths=build/reports/jacoco/testDebugUnitTestCoverage/testDebugUnitTestCoverage.xml,build/reports/jacoco/testReleaseUnitTestCoverage/testReleaseUnitTestCoverage.xml
systemProp.sonar.projectName=eudi-lib-android-wallet-core
VERSION_NAME=0.12.2
VERSION_NAME=0.12.3

SONATYPE_HOST=S01
SONATYPE_AUTOMATIC_RELEASE=false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ interface EudiWallet : SampleDocumentManager, PresentationManager {
readerTrustStore = readerTrustStoreToUse
)

val openId4vpManagerFactory = {
val openId4VciManagerFactory = {
config.openId4VciConfig?.let { openId4VciConfig ->
OpenId4VciManager(context) {
documentManager(documentManagerToUse)
Expand All @@ -297,7 +297,7 @@ interface EudiWallet : SampleDocumentManager, PresentationManager {
transferManager = transferManager,
logger = loggerObj,
readerTrustStoreConsumer = { presentationManagerToUse.readerTrustStore = it },
openId4VciManagerFactory = openId4vpManagerFactory,
openId4VciManagerFactory = openId4VciManagerFactory,
)
}

Expand Down

0 comments on commit 09b6b51

Please sign in to comment.