You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 27, 2018. It is now read-only.
RxJava 2 proguards well as I heard so method count shouldn't be an issue.
However, if you know any technologies or have the time, we could investigate some library-rewriting options where one can cherry-pick types and methods upfront and depend on a custom-made library.
On Android, one of the issues with RxJava is the method count.
Because of this limitation, I don't see the value of
Completable
orMaybe
.Both types return once, like
Single<T>
. As a Kotlin developer, representingT
as a sealed class gives me all the power of aCompletable
or aMaybe
.I'd like to see a module with just
Flowable<T>
andSingle<T>
, somehow, if this could drastically reduce method counts.Just thoughts..
The text was updated successfully, but these errors were encountered: