Uwe (ObjectBox)

Results 521 comments of Uwe (ObjectBox)

Thanks for reporting! As a quick solution you could fork this library and remove the non-Android parts from [`NativeLibraryLoader.java`](https://github.com/objectbox/objectbox-java/blob/main/objectbox-java/src/main/java/io/objectbox/internal/NativeLibraryLoader.java) (or just remove `getCpuArchOSOrNull()`). This is likely talking about system (pre-installed)...

A similar issue affecting Android 8.1 devices has been reported at #926. This error means the database file has been corrupted. There are various options to handle this. It is...

My suggestions: - **shipped with 2.0.0 beta** Box query builder: ```kotlin // Regular val query = box.query().run { equal(property, value) order(property) build() } // With extension val query = box.query...

The first two suggestions are released as part of `2.0.0-beta`. Also added [docs for the existing extensions](https://docs.objectbox.io/kotlin-support#using-the-provided-extension-functions). -ut

An upcoming release will add extensions that are shortcuts for query methods that accept `Long` and `Double`. However, the shortcuts can be used with `Int`, `Short` and `Float` without having...

@irvine752 This issue is about Kotlin extension functions, not query conditions. Anyhow, not-in is not supported for String properties. Please thumbs up #941!

@HosseinKurd The notIn (or notOneOf using the new query API) conditions are only supported for integers (Integer and Long)! For Strings only in/oneOf is possible.

@HosseinKurd You can't. Put differently: `notIn` is not supported for String. You'll have to find another way, e.g. by changing your model or writing custom filter code.

Thanks for the suggestion! I guess the expectation in this case is that the code never does a conflicting insert, e.g. it does a query beforehand to find a possible...

Thanks for the suggestion! Interesting use case. This is not as simple as adding a read-only flag as the plugin also generates code that depends on entity classes to exist....