Uwe (ObjectBox)
Uwe (ObjectBox)
`object put failed: 10002 ID is higher or equal to internal ID sequence` This message indicates that your code is trying to put an object with an ID that has...
@madrojudi Did you read my comment? If your code wants to update an existing object, it needs to use an existing `localId`. The error message indicates that your code uses...
Thanks for the clarification. Maybe this can be solved by using `Store.attach` to attach to the store that is already open for your app? See my comment at https://github.com/objectbox/objectbox-dart/issues/436#issuecomment-1168484708 on...
OK, so the issue is that the `retrofit_generator` (which uses `source_gen`) also outputs files named like `*.g.dart`. Your workaround works by restricting the input of `source_gen` to your retrofit classes....
@shic I believe this was the previous (and not successful) attempt of the original poster to resolve the conflict with the retrofit source generator. This isn't actually required when using...
@shic Is the file containing your data model classes named `objectbox.dart`? In that case I suggest to just rename it. The issue is that `json_serializable` produces `.g.dart` for each file...
Please thumbs up the original post, this helps us track interest!
If you are interested in this please thumbs up the original post, this helps us track interest!
ObjectBox does not support accessing the same database file in read/write mode from two different processes, like in this case two separate apps. It would be possible to open one...
Thanks for reporting! However, I can only speculate about the issue without a stack trace or info on how to reproduce this. `Admin` needs a `Store` instance to be supplied....