Reputation: 109
My Android project has RxJava onboard. How to check that all Disposable
resources are being released correctly and it time later after subscribe()
calls?
Upvotes: 1
Views: 260
Reputation: 109
To see all not disposed Rx subscriptions at the moment, use RxDisposableWatcher tool.
Read my post on Medium: Detect Leaked Subscriptions in RxJava code using RxDisposableWatcher
Features
subscribe()
occurredExample of HTML report
Upvotes: 1