Hey guys, I'm trying to create this feature where ...
# android
m
Hey guys, I'm trying to create this feature where I get the time in real time. Almost like observing the clock and reporting back the time as it counts. Some sort of live data implementation. (ideally what I want) I'm trying to compare two times, but using the method of finding current time and storing it somewhere, then comparing doesn't help the matter. How would you go about observing time? Other than working off the main thread, how else would you go about ensuring the app doesn't hang, assuming you implement it using some live data/ observable technique?
😶 2