mirror of
https://github.com/pachli/pachli-android.git
synced 2025-02-08 16:08:54 +01:00
The preference change listener was being optimised out by R8, causing rapid garbage collection, breaking the `changes` flow in release builds. Fix this by annotating the field with `@Keep` so it is retained. Fixes #225