The following radio button doesnt fire the subscription for the button to be enabled on the Android browser. It works on all desktops/browsers/OS and even iPhone but not Android. Am I missing something? It works if the input element is switched to a checkbox. I am using knockout.js 3.2.
<input type="radio" data-bind="checked: accept, disable: files().length == 0" />
<button class="btn submit" data-bind="click: submit, disable: $root.submitting() || !accept() || files().length == 0">Submit</button>
function SubmitTask(classSubmission, options) {
var self = this;
self.accept = ko.observable(false);
}