AndroidDeveloperLB

Results 918 comments of AndroidDeveloperLB

@pyrates999 I don't understand the steps. Please explain in a list.

@rom1v Has anyone contacted you about this? Any progress? I can still have it reproduced. Not always, but for me it's when I let it stay while I play a...

@rom1v 1. Sadly the only other device (current one is Pixel 6 with Android 14) I currently have is the Honor Magic 4 pro (with Android 14), which fails to...

But I want this turned on too. That's one of the reasons I use this plugin...

I know it's doing its job. It does it well, but when I leave the IDE, I don't want it to do anything, because I'm not ready yet for formatting...

@fishermans Are you saying this plugin won't get updated anymore? :( @markiewb Sadly this setting ("No action if compile errors...") doesn't work for the case I've shown: ``` notificationManager. notificationManager.notify(123,...

Another workaround, again with reflection, but this time with the duration of the frames: ```kt private fun testGif2() { val drawable = GlideApp.with(applicationContext).load(R.raw.test_gif).skipMemoryCache(true) .diskCacheStrategy(DiskCacheStrategy.NONE).submit().get() as GifDrawable val state = drawable.constantState...

Anyway, I think I got it, but used too much things of Glide even though I don't need caching of anything: For GIF: ```kt private fun testGif3() { val data...