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
I tried using the rxjava3-interop library (version 3.0.0) in a project that runs in an OSGi container (Apache Felix)
The problem I ran into is that the rxjava3-interop bundle won't start due to the imports of the following packages
io.reactivex.rxjava3.internal.disposables -- Cannot be resolved
io.reactivex.rxjava3.internal.subscriptions -- Cannot be resolved
io.reactivex.rxjava3.internal.util -- Cannot be resolved
This happens because those packages aren't exported by the rxjava bundle (io.reactivex.rxjava3/rxjava/3.0.3).
Since I think that these packages are intentionally not exported, would it be possible to get rid of these imports in the rxjava3-interop bundle (without adding/duplicating too much code)?