Peter Bartos
Peter Bartos
Temporary workaround is to bind all radio buttons to the same callback and then check which is selected: ``` @OnClick({R.id.radio_button1, R.id.radio_button2}) public void radioGroupUpdate() { radio1.isChecked() ? .... } ```
This could be fixed in version 1.5.0 as we started using `com.google.android.gms.iid.InstanceID` intent filter to renew the registration ID. This should be called also when device information is changed, which...
> I came across the same issue, and it fixed it with the following: > > ``` > form.getCheckBox('check18').check(); > form.getCheckBox('check18').defaultUpdateAppearances() > ``` > > Hope this helps someone else...