Store icon indicating copy to clipboard operation
Store copied to clipboard

A Kotlin Multiplatform library for building network-resilient applications

Results 115 Store issues
Sort by recently updated
recently updated
newest added

Bumps appcompat from 1.3.1 to 1.4.1. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.appcompat:appcompat&package-manager=gradle&previous-version=1.3.1&new-version=1.4.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

As @digitalbuddha recommends (https://github.com/dropbox/Store/issues/193#issuecomment-671104053), I'm backing my two stores with the same source of truth: Given the following two stores: - `UsersStore: Store` - `UserStore: Store` and both using the...

**Describe the bug** With the implementation of store using coroutine flow and the store implementation returning store.stream(request) where the request contains a StoreRequest.fresh, we are seeing that on every pull...

bug

Maybe more of a question than a bug. This is related to #78, I believe. When calling `Store.get()` with no active streams, it will return the memory cached value instead...

discussion

I'm trying to setup a pretty basic Store that works with a List that is backed by a (Room) SoT, but I am running into a few problems, outlined below....

enhancement

At present, `fetcher` emissions are locked until `reader` emits, in order to preserve emission order. This presents a problem in the case that you do not want to emit from...

documentation

What does it mean when a Store emits StoreResponse.NoNewData? Documentation says only the following: ``` /** * No new data event dispatched by Store to signal the [Fetcher] returned no...

discussion

Please provide a better documentation on how to use it with different use cases. For instance reading all items or reading a single item using Store. While I know how...

enhancement

I enjoy a lot Store 4 library I actually wrote an [article](https://medium.com/swlh/introduction-to-android-data-storage-with-dropbox-store-4-b2dc7e3753e1) in early 2021. I mentioned a feature I see as an improvement for the library. **Is your feature...

enhancement