I am using GreenDao in my Android project and i have generated my database schema successfully but I am stuck on one issue. My generated class needs to implement an interface that is not related to db. In the generator I have used the following method:
myEntity.implementsInterface("com.my.app.myinterface");
and then after generation the class has an implementation annotation of this interface in its header but there are no Override methods in the code of course. I tried putting a package with my interface in the generator project but still, methods are never there automatically. Shall I insert them manually within the
// KEEP METHODS - put your custom methods here
...
// KEEP METHODS END
section?