I'm starting a coroutine with `launch` in the my b...
# android
c
I'm starting a coroutine with
launch
in the my binding method in the recyclerview's viewholder. I use the
CoroutineContext
from the Activity that implements the interface CoroutineScope. LeakCanary says I'm leaking the Activity. Every ViewHolder gets destroyed but one. As soon as I reopen the Activity the leaking ViewHolder is destroyed, but then another one will leak after closing the Activity. It's driving me nuts.