如何在 android studio 的多个项目中重用 google 云端点
How to reuse google cloud endpoints in multiple projects in android studio
我是 google 云端点的新手。我已经成功创建了一些端点。现在我想在其他项目中使用来自这些端点的 APIs。为此,我将需要 APIs 类。有没有办法在其他项目中编译我的后端并在其他项目中获得 API 类
您的 API 需要客户。您可以使用 the Google Endpoints documentation to generate Java clients, or you can use the OpenAPI spec from your API to generate clients with a tool like swagger-codegen.
我是 google 云端点的新手。我已经成功创建了一些端点。现在我想在其他项目中使用来自这些端点的 APIs。为此,我将需要 APIs 类。有没有办法在其他项目中编译我的后端并在其他项目中获得 API 类
您的 API 需要客户。您可以使用 the Google Endpoints documentation to generate Java clients, or you can use the OpenAPI spec from your API to generate clients with a tool like swagger-codegen.