Skip to content

1.5.1

Compare
Choose a tag to compare
@rolsonquadras rolsonquadras released this 13 Dec 17:43
· 139 commits to main since this release
dc3f282

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

Full Changelog: 1.5.0...1.5.1