Select the types of activity you want to include in your feed.
refactor(wear): Change `color` type to Long
Removes the need for transformations to and from the string hex code, improving performance and reducing the chances of a bug impacting color interpretation.
···1111 * Object definitions for records sent between Wear/Mobile
1212 */
13131414-data class Activity(val id: Long, val name: String, val icon: String, val color: String)
1414+data class Activity(val id: Long, val name: String, val icon: String, val color: Long)
15151616data class CurrentActivity(val id: Long, val startedAt: Long, val tags: Array<Tag>) {
1717 override fun equals(other: Any?): Boolean {