morozione
morozione
Thanks for the solution but it seems like a crutch because after the user will select a second item then in second time spinner will show the next list of...
I've solved the problem by added **onBackpressureBuffer()** method to the code where I`m subscribing to the lifecycle. Look at the code: ``` mStompClient?.lifecycle() ?.onBackpressureBuffer() ?.subscribeOn(Schedulers.io()) ?.observeOn(AndroidSchedulers.mainThread()) ``` Seems like you...
You can solve the problem by don't add **implementation "com.arello-mobile:moxy-app-compat:$moxy"** to your project but instead of this you can create your class **com.arellomobile.mvp.MvpAppCompatActivity** with the code from this repository but...
Can you please provide an example of how to use the Scarlet as a stomp client? I've been looking for it for a couple of months but didn't get anything...