objectbox-java icon indicating copy to clipboard operation
objectbox-java copied to clipboard

Android Database - first and fast, lightweight on-device vector database

Results 142 objectbox-java issues
Sort by recently updated
recently updated
newest added

Currently, every time someone builds a Gradle project, the plugin will look for the entities and recreate the model JSON file if needed. My suggestion is to add an option...

enhancement

Thanks for the wonderful library. When is objectbox sync going to be released? I signed up for early access a while back and have received no updates so far.

enhancement

Did not find any info on that, so decided to ask here - is there (or planned) an option to shrink (e.g. compact the database)? We're using objectbox for quite...

enhancement

Does ObjectBox have the equivalent of the SQL LIKE keyword? If it does not, I would like to add that as a feature request. This was my solution for the...

enhancement

``` @Entity public class Note { @Id public long id; public String title; public ToMany tags; } @Entity public class Tag { @Id public long id; public String description; public...

enhancement

On queries, you can use string array "overloads" for `in` in the following ways: `QueryBuilder in(Property property, String[] values)` `QueryBuilder in(Property property, String[] values, StringOrder order)` The same "overloads" are...

enhancement

UniqueViolationException currently in the instances created by objectbox itself in the error message is the id that conflicts with the document we want to insert, I wonder if it is...

enhancement

I am aware that according to your documentation, @BaseEntity not allowed on a superclass from a library. I was hoping this is on the dev roadmap? Please advise. Thanks!

enhancement

The "Date" property is outdated with Java 8 Time API, it would be nice to have Instant instead.

enhancement

**Describe the bug** In android Application to build boxStore to occurred th problem. ```kotlin private var boxStore: BoxStore? = null fun initBox(context: Context) { boxStore = MyObjectBox.builder() .androidContext(context.applicationContext).build() if (BuildConfig.DEBUG)...

bug