logOut
Deprecated
logOut() only clears the local push device cache; it does not log the user out, remove the server-side device row, or disconnect the socket. Use StreamVideo.removeClient() for a full teardown (combine with deleteDevice() first if the server-side device row must be removed).
Replace with
import io.getstream.video.android.core.StreamVideo
StreamVideo.removeClient()Clears the locally stored push device token only. Does not call the server DELETE /devices endpoint, disconnect the coordinator socket, or clear any in-memory user / call state. The name and historical KDoc misrepresented this behavior; the method is kept for source compatibility but should not be used.
For a full teardown, call deleteDevice (if a server-side device row should be removed) and then StreamVideo.removeClient, which triggers cleanup and uninstalls the singleton.