Uwe (ObjectBox)
Uwe (ObjectBox)
@liujingtaode Using the `@Convert` approach you can't use regular query conditions as it can only see the encrypted strings. A workaround would be to query for all objects and [use...
We don't share timelines. But I can say that this feature is not being actively worked on right now. Again, if you are interested, please thumbs up the first post....
`2.7.0` introduced read-only stores that enable multi-process support. There is an example: https://github.com/objectbox/objectbox-examples/tree/main/android-app-multiprocess Inter-process data observers are in preparation: #893
Thanks for reporting! However, based on the tombstone you have shared I can't pinpoint the issue with ObjectBox (the tombstone does not contain `libobjectbox-jni.so`). As you wrote "when I debug...
Tried to reproduce on - Android 12 x86_64 emulator - Android 7.1.1 ARMv7 device but could not. As said before, given that the tombstone does not seem to include `libobjectbox-jni.so`...
Sorry, not seeing any obvious issue. Can also debug when doing `put` inside a coroutine. If you want us to continue looking into this, please share a small example project...
Multiple emissions from a data subscription when one is expected, after quickly recreating box store
Thanks, this is also what I have observed with our internal integration tests (hinted at in #616). I'm also not sure of the cause due to `store.close()` technically waiting up...
Multiple emissions from a data subscription when one is expected, after quickly recreating box store
Sorry, this got drowned among other things. Thanks for your additional details. I'd say the most important thing is that once an observer is unsubscribed it should no longer receive...
If I understand this correctly, the issue is that a `DataSubscription` used by `ObjectBoxLiveData` might swallow exceptions that occured while running a query. ~[There is a note in `SubscriptionBuilder.ActionObserver.callOnError()`](https://github.com/objectbox/objectbox-java/blob/master/objectbox-java/src/main/java/io/objectbox/reactive/SubscriptionBuilder.java#L247) (link...
Could confirm this using the arch example project (added a `ToOne` relation to `Note`, made fields `private`). Upon further investigation it turns out [QueryPublisher.publishSingle()](https://github.com/objectbox/objectbox-java/blob/master/objectbox-java/src/main/java/io/objectbox/query/QueryPublisher.java#L79-L87) swallows any exceptions from `query.find()`. -ut