Google Plugin for Eclipse includes a facility to automatically generate the cloud endpoints client library. But there doesn\'t seem to be an easy way to move the generated s
The idea is that the wizard that generates the client library also copies it into your client project.
But that depends on e.g. how you initially created your projects, and even if it does work, what if you have multiple clients projects, or change your client project... so here are some ideas:
I found a file that specifies which project the client libraries will get copied to (in the .settings folder): com.google.gdt.eclipse.appengine.swarm.prefs:
connectedProject=[target-android-project-name]
eclipse.preferences.version=1
Manually changing this file worked for me, but I haven't tried manually creating it if it doesn't exist.
Clearly that is is not a great solution, so..