Google Plugin for Eclipse 包含一个自动生成云端点客户端库的工具。但是似乎没有一种简单的方法可以将生成的 source.jar 文件移动到您的 Android 源代码中。
文档https://developers.google.com/appengine/docs/java/endpoints/consume_android说
Endpoints 生成会生成一个源 jar 文件。将此 jar 文件的内容添加到您的 Android 项目中。
似乎不可能将 source.jar 文件放入 Android /lib 或 /libs,因为源是 .java 而不是 .class 形式。因此,我只需手动复制 GPE 生成的源代码(他们将其放在 AppEngine 项目的 endpoints-lib 文件夹中)。这可能非常麻烦,尤其是当您有多个端点并且经常对其进行编辑时。
另请参阅将 android 应用程序连接到 Google Cloud Endpoints 时出错:找不到类
有谁知道直接在Android项目中实际使用sources.jar文件的方法?谢谢。