I am using a Listener Service to insert some data from the phone to the watch into a room database. Is it possible for my watch app's UI to update itself without having to reload it once new data is inserted? Or would I need to use a broadcastReceiver to notify the UI that it needs to recompose?
a
Ataul Munim
12/30/2022, 3:08 PM
Shouldn't need a broadcast receiver. Your UI can be driven by a state changes which are backed by observing changes to the Room database.