工具:Android Studio 1.0.2中不提供Google Cloud Tools菜单选项

时间:2023-02-11 23:12:52

In the following video :

在以下视频中:

http://youtu.be/7Sp4Lr3Qmcw?t=16m6s

http://youtu.be/7Sp4Lr3Qmcw?t=16m6s

at 16:06 into the video, the presenter uses the Tools -> Google Cloud Tools -> Install Client Libraries menu option in Android Studio. However, this menu option does not seem to be present in v1.0.2 of Android Studio

在16:06进入视频时,演示者使用Android Studio中的工具 - > Google云端工具 - >安装客户端库菜单选项。但是,此菜单选项似乎不存在于Android Studio的v1.0.2中

工具:Android Studio 1.0.2中不提供Google Cloud Tools菜单选项

2 个解决方案

#1


1  

The cloud tools feature integration in Android Studio has changed somewhat since that video was made. You shouldn't need to run 'Install Client Libraries' anymore. The dependency between the Android App and the cloud module is managed automatically and simply building the module or doing a Gradle sync should allow you to use the client libraries from the Android app. (Assuming you used the new module wizard to create your cloud modules)

自从制作视频以来,Android Studio中的云工具功能集成已经有所改变。您不应再需要运行“安装客户端库”。 Android App和云模块之间的依赖关系是自动管理的,只需构建模块或进行Gradle同步,就可以使用Android应用程序中的客户端库。 (假设您使用新模块向导来创建云模块)

For the most up to date documentation look here.

有关最新文档,请查看此处。

#2


0  

appengineEndpointsInstallClientLibs - Install generated client libs into the local Maven repository

appengineEndpointsInstallClientLibs - 将生成的客户端库安装到本地Maven存储库中

You can run this directly from the terminal

您可以直接从终端运行它

gradlew appengineEndpointsInstallClientLibs

In short just type:

简而言之就是输入:

gradlew aEICL

If you want more information about available tasks try:

如果您需要有关可用任务的更多信息,请尝试

gradlew <module-name>:tasks

#1


1  

The cloud tools feature integration in Android Studio has changed somewhat since that video was made. You shouldn't need to run 'Install Client Libraries' anymore. The dependency between the Android App and the cloud module is managed automatically and simply building the module or doing a Gradle sync should allow you to use the client libraries from the Android app. (Assuming you used the new module wizard to create your cloud modules)

自从制作视频以来,Android Studio中的云工具功能集成已经有所改变。您不应再需要运行“安装客户端库”。 Android App和云模块之间的依赖关系是自动管理的,只需构建模块或进行Gradle同步,就可以使用Android应用程序中的客户端库。 (假设您使用新模块向导来创建云模块)

For the most up to date documentation look here.

有关最新文档,请查看此处。

#2


0  

appengineEndpointsInstallClientLibs - Install generated client libs into the local Maven repository

appengineEndpointsInstallClientLibs - 将生成的客户端库安装到本地Maven存储库中

You can run this directly from the terminal

您可以直接从终端运行它

gradlew appengineEndpointsInstallClientLibs

In short just type:

简而言之就是输入:

gradlew aEICL

If you want more information about available tasks try:

如果您需要有关可用任务的更多信息,请尝试

gradlew <module-name>:tasks