arberg
arberg
I found I could exclude the dependencies like this: compile('com.github.chrisbanes.bitmapcache:library:2.3'){ exclude group: 'com.google.android' } compile 'com.android.support:support-v4:23.1.1' I still think this project should include the newest support-lib-v4 (as it claims to...
Hi @bkhall @chrisbanes has not updated repository for 2 years, so I would say its dead. farfromrefug (https://github.com/Akylas/Android-BitmapCache/) made lots of updates in 2014 that was never pulled. I pushed...
I've updated the code today, fixing a bug where the activity surface wasn't ready yet, and also cleaning up the new code a bit.
I have added surface-copy using PixelCopy. See my pull request: https://github.com/wasabeef/Blurry/pull/120 PixelCopy can copy pixels on the Google Map surface, and as far as I know any other surface shown...
I have merged your chances to my branch, and made some performance tests. See the other pull-request. I've made the code multi-threaded, but the blur is incorrect when running in...
@steve-the-edwards : > Yes this makes sense to me and is necessary - my issue is that it _also_ progresses other coroutines dispatched outside of the `runBlocking` loop. Why not...
@steve-the-edwards I tested in in main thread in an android app, not in a Unit-test. I know I'm right about how it behaved. I do not know if it is...
@pacher The way I understand it jobs are like a tree. runBlocking is one such job-tree, and coroutines dispatched outside the runBlocking are obviously not children of the runBlocking-node. According...
@steve-the-edwards I suggest you try the code I included, and wonder why the `Outer - A` does not get executed, if it doesn't run before runBlocking starts.
I ran into this issue as well today, though I didn't lose any data, I did lose backup data (but my original is still working). A backup program should never...