desgraci

Results 14 comments of desgraci

Any update in this issue, this is killing me at least in Pixel devices

Android 10, API 29, Build number QP1A, 191005.007.A3 ``` Scheduling upload for context TransportContext(cct, HIGHEST, MSRodHRwczovL2NyYXNobHl0aWNzcmVwb3J0cy1wYS5nb29nbGVhcGlzLmNvbS92MS9maXJlbG9nL2xlZ2FjeS9iYXRjaGxvZ1xBSXphU3lCcnBTWVQ0RkZMMDlyZUhKaTZIOUZZZGVpU25VVE92Mk0=) with jobId=1340223196 in 1000ms(Backend next call timestamp 1634915248453). Attempt 1 2021-10-28 08:52:47.909 E: FATAL...

what about working with `List`, and when u are sure that u will get into an `Immutable` state using the `toImmutableList`? honest question, not sure why an `Immutable` should have...

Ah ok, got, thanks for the quick explanation and response, I knew I was missing something basic :D this is `Immutable` to `Immutable`, which makes sense for creating new ones.

Still no solution? this makes the app virtually unusable EDIT: are you sure u don't auto reclaim/compress the space after saving, when the disk is created, seems to be the...

I can think quickly on 3 reasons: 1. I want to create as few instances as I can, e.g. `emptyImmutableList () === emptyImmutableList()`, will be still the same. 2. I...

> I think @qwwdfsad's point is that the impl could be simply > > ```kotlin > fun emptyImmutableList(): ImmutableList = EmptyImmutableList > > internal val EmptyImmutableList = persistentListOf() > ```...

> > I wasn't aware of the migration to value classes > > I'm neither, I only expect this may be sensible to do, at least for some classes like...