I’m trying to use an anonymous authentication with a Device Sync. But I have troubles seeing any log in my logcat that will indicate some kind of an error. This is my code, the first log is triggered, however the second one after the login function, never does. I’ve been banging my head for a few days without any luck. Help of any kind would be enormously appreciated?
viewModelScope.launch {
Log.d("HomeViewModel", "Logging in")
App.create(APP_ID).login(Credentials.anonymous())
Log.d("HomeViewModel", "Completed")
}