I have created a separate module where i store POJO and use them in GAE Cloud Endpoints module as well as in Android App.
I want to store one of the objects in GAE Datastore. Now to mark this class as objectify i need to use annotations to identify Entity and Id. This would mean that my POJO Module would now need to import objectify jar. And I don't want to carry them into my Android app.
How should I go about it? Should I just import objectify stuff into POJO module? Or is there a workaround that objectify to be imported only into GAE module