Uwe (ObjectBox)

Results 521 comments of Uwe (ObjectBox)

This is kind of the anti-thesis of what EventBus does (notify everybody vs notify only subscribers). You should specify an additional event and post/subscribe to that. -ut

Thanks for your efforts, but we generally update dependencies ourselves when necessary. -ut

As far as I know [Java does not support annotation inheritance](http://stackoverflow.com/questions/7761513/is-there-something-like-annotation-inheritance-in-java). So this does not work out of the box. I suppose you could implement the method in your abstract...

See two workarounds above. Keeping this open for future reference if we ever want to support this. -ut

You should be able to check [`.hasSubscriberForEvent(Class eventClass)`](https://github.com/greenrobot/EventBus/blob/V3.0.0/EventBus/src/org/greenrobot/eventbus/EventBus.java#L344) on your EventBus instance. **Edit:** sorry, meaning there are no notifications if somebody registers or unregisters. You have to track this yourself...

This means there is not enough free memory for the Cursor buffer. You need to check your app does not hold onto too many resources. See the following comment for...

First of all, try to clean and re-build. Then, check that you do not include the greenDAO library multiple times. E.g. run `gradlew :app:dependencies` to check your dependency configurations.

The code is correct, the database should remain open. Otherwise the returned `DaoSession` would have no database to work with. I suggest to ignore this message (maybe add a note).

@Rahul5234 There are various reasons why `SQLiteCantOpenDatabaseException` might be thrown, e.g. missing write permissions. I suggest to guard that code and add some reporting to see the exception message to...

Make sure to update to the latest version: https://github.com/greenrobot/greenDAO/releases/tag/V3.3.0 Closing as answered. Feel free to comment with more information or create a new issue.