Turns out you need to add code when creating RestrictionEntry
Although I will update so that people do not need to hunt ...
In the message of your recipient
final Bundle oldRestrictions = intent.getBundleExtra(Intent.EXTRA_RESTRICTIONS_BUNDLE);
then when creating the link to the record.
eg.
RestrictionEntry myEntry = new RestrictionEntry(KEY, oldRestrictions.getBoolean(KEY, false)); myEntry.setType(RestrictionEntry.TYPE_BOOLEAN); myEntry.setTitle("KEY TITLE"); newEntries.add(myEntry);
source share