py - Pierre Yves Ricau
py - Pierre Yves Ricau
What I meant here is providing this as part of the Shark / graph APIs rather than use it internally.
You can upload directly to google issues, or you can uploading to google drive then share the link here and make sure it's shared with my email (py.ricau gmail.com)
See https://issuetracker.google.com/issues/258390457 You're running into this because your main thread is never idle. Figure out what message you're constantly posting to the main thread.
You should consider building an open source example / tutorial so that anyone can do this!
Closing, see https://github.com/square/leakcanary/issues/2319#issuecomment-1552383272
We could potentially provide utilities to help ignore LeakCanary strict mode violations. Not sure about any auto install though. Something inspired from this: ```kotlin private fun initializeStrictMode() { StrictMode.setVmPolicy( StrictMode.VmPolicy.Builder(StrictMode.getVmPolicy())...
Thanks for the bug report. The thing that makes this tricky is that we default to disabling LeakCanary in test, but we also want people to leverage the instrumentation test...
Closing as we haven't been able to repro and can't figure out how this could happen.
I believe yes, just set `LeakCanary.config.showNotifications` to false (=> won't show notifications) and then set it to true once you've gotten the permission.
The approach #2447 wasn't great because it made it look like all drawables had strong refs. Maybe we need to introduce the concept of a "reachable" cache, and process this...