Frank Egan

Results 6 comments of Frank Egan

I'd also like to have this functionality. Oddly enough my tests that used the `ContentResolver#notifyChange` provided by `ProviderTestCase2` worked just fine and I could observe new changes. But when I...

This just saved me so much time; thank you!

Sounds like this was fixed in release 3.4.11 https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.11 > To work around a [known Android issue](https://issuetracker.google.com/issues/164901843) that can cause crashes when creating EncryptedSharedPreferences, we've upgraded androidx.security.crypto from version 1.0.0...

You're correct. I asked about this issue [on Stackoverflow](https://stackoverflow.com/questions/59923064/why-doesnt-flow-oncompletion-get-called-for-conflatedbroadcacstchannel-asflow) . Looks like the codelab is not correct when it states: "`onCompletion` will be called every time the flow above it...

You can "solve" it by just putting the spinner calls before and after the block so they run every time. ``` source.asFlow() .mapLatest { _spinner.value = true block(it) _spinner.value =...

This can probably be closed since the [activity dependency was updated to 1.9.2](https://github.com/MM2-0/Kvaesitso/commit/d745d199aae5b50ed471325c2651211a3e3ec005#diff-697f70cdd88ba88fe77eebda60c7e143f6ad1286bca75017421e93ad84fb87dfR29) a few weeks ago. If that hasn't fixed it you can try [updating to activity 1.9.3](https://developer.android.com/jetpack/androidx/releases/activity#1.9.3). There...