Erik Hornberger
Erik Hornberger
You should be able to use just one store, without changing its name. CareKit already performs the checks that you've put in place in your initializer, but it puts the...
Can you provide information about the tasks you're using? It seems like there may be something about the versioning of those tasks that CareKit doesn't know how to handle gracefully....
@MihirJoe It looks like you've got an older version of the framework checked out, and there was a bug similar to the one you're seeing a few months ago. I'd...
Hi Umair, Does changing your code to this fix the problem? ```swift let myCustomAggregator = OCKEventAggregator.custom { dailyEvents -> Double in // There are two values, but you were using...
Andrea, I suspect the issue is here: ```swift // 4b. Save the result into CareKit's store controller.appendOutcomeValue(withType: answer, at: IndexPath(item: 0, section: 0), completion: nil) controller.appendOutcomeValue(withType: answer2, at: IndexPath(item: 0,...
Glad to hear you got it working!
Without knowing precisely what effect you're going for, my best guess is that you need two create two different data series configurations, one that looks only at the first value,...
Can you clarify which view controller this happens with? Is it the `OCKSimpleTaskViewController` or the `OCKGridTaskViewController`?
TLDR; The contact list view controller watches for _updates_ to the contacts it is already displaying, but does not add or delete contacts automatically. You might considering listening for adds/deletes...
Thanks for reporting this Desmond! Can you confirm which commit you have checked out? Is this on a version of CareKit from before or after we merged #449?