Bixby Developer Center

Guides

2022 January–March

22B Capsule SDK Release Notes

Updated: March, 16, 2022

Deprecated privacy-policy-url and terms-url in capsule-info.bxb File

We've deprecated both privacy-policy-url and terms-url in the capsule-info.bxb file. You should instead define the appropriate documents in your legal.bxb file instead.

Deprecated:

capsule-info {
privacy-policy-url (https://my-capsule.com/privacy-policy)
terms-url (https://my-capsule.com/TandC)
...
}

New:

legal {
country-documents {
store-country(US)
privacy-policy {
url(https://my-capsule.com/privacy-policy)
}
terms-and-conditions {
url(https://my-capsule.com/TandC)
}
...
}
...
}

Deprecation Stages

Learn more about the deprecation stages.

  • Stage 1: R22B
  • Stage 2: R22E
  • End of Life: None

22A Capsule SDK Release Notes

Updated: January 26, 2022

New disable-voice-content-selection Runtime Flag

We've introduced a new runtime flag disable-voice-content-selection, which allows you to disable the voice content selection feature on a global scale for your capsule.

Updated Dialog Best Practices

The Dialog Best Practices Developers' Guide has been updated with more information and with better examples.