1.5.1
1.5.1
[Android/iOS SDK] Support to send issuance acknowledgement
Code flow
// run the issuance flow
// check if issuer expects acknowledgement
if oid4vciInteraction.requireAcknowledgment() is true {
// add following code based on user action to add or cancel the credential to wallet
// get the ack token
ackTkn = oid4vciInteraction.acknowledgment().serialize()
// create the ack object
ack = Acknowledgment(ackTkn)
// for success
ack.acknowledgeSuccess()
// for cancel
ack.acknowledgeReject()
}
References
What's Changed
- feat(sdk): issuer trust info. by @vkubiv in #690
- feat(sdk): verifier trust info. by @vkubiv in #693
- feat(sdk): improved acknowledgment api. by @vkubiv in #694
- docs(sdk): issuance ack API by @rolsonquadras in #697
- fix(app): Update acknowledge success function by @talwinder50 in #695
Full Changelog: 1.5.0...1.5.1