如何在 IntelliJ 中将 Google Cloud Endpoints 模块添加到我的 Android 项目中?
How do I add a Google Cloud Endpoints Module to my Android project in IntelliJ?
我想用我在 IntelliJ 中的 Android 项目测试 Google Cloud Endpoints。我将 IntelliJ 用于很多事情,包括:
- 网络开发。
- 正在编写 Python 脚本。
- 制作Java命令行程序。
- 玩新语言我正在考虑像 Rust 一样学习。
我更喜欢在同一个 IDE 中完成这一切,因为我有很多用于各种事情的插件和很多自定义设置等等。重点是我不想使用 Android Studio。
由于 Android Studio 基于 IntelliJ,我通常可以按照 IntelliJ 中为 Android Studio 制作的所有教程进行操作,尽管有时 UI 内容会稍微移动一下。但是,我似乎无法找到任何方法将 Google Cloud Endpoints 模块添加到我在 IntelliJ 中的项目中。我正在尝试 follow this guide.
我安装了Google Cloud Tools 插件,但似乎没有任何界面可以访问它们。那么有没有人知道如何在普通的旧 IntelliJ 中执行此操作,或者这可能目前只能在 Android Studio 中实现?
我是 Google IntelliJ 和 Android Studio 云插件的技术负责人。
遗憾的是,来自 Android Studio 的 App Engine 模块生成功能在 IntelliJ 中不可用。有一些平台差异使得移植该功能集变得非常重要。最终我们希望将 Android/Cloud 集成带给所有 IntelliJ 平台用户,但目前我们只关注 IntelliJ 中的云支持(想想 Stackdriver Debugger、App Engine flex 和标准部署、Cloud Repository 集成)。
根据documentation、"Creating App Engine-based cloud backends is not supported in Android Studio 3.0; however, your existing projects with cloud backends will continue to work in Android Studio."
它还建议改用 FireBase 创建新的移动后端。
我想用我在 IntelliJ 中的 Android 项目测试 Google Cloud Endpoints。我将 IntelliJ 用于很多事情,包括:
- 网络开发。
- 正在编写 Python 脚本。
- 制作Java命令行程序。
- 玩新语言我正在考虑像 Rust 一样学习。
我更喜欢在同一个 IDE 中完成这一切,因为我有很多用于各种事情的插件和很多自定义设置等等。重点是我不想使用 Android Studio。
由于 Android Studio 基于 IntelliJ,我通常可以按照 IntelliJ 中为 Android Studio 制作的所有教程进行操作,尽管有时 UI 内容会稍微移动一下。但是,我似乎无法找到任何方法将 Google Cloud Endpoints 模块添加到我在 IntelliJ 中的项目中。我正在尝试 follow this guide.
我安装了Google Cloud Tools 插件,但似乎没有任何界面可以访问它们。那么有没有人知道如何在普通的旧 IntelliJ 中执行此操作,或者这可能目前只能在 Android Studio 中实现?
我是 Google IntelliJ 和 Android Studio 云插件的技术负责人。
遗憾的是,来自 Android Studio 的 App Engine 模块生成功能在 IntelliJ 中不可用。有一些平台差异使得移植该功能集变得非常重要。最终我们希望将 Android/Cloud 集成带给所有 IntelliJ 平台用户,但目前我们只关注 IntelliJ 中的云支持(想想 Stackdriver Debugger、App Engine flex 和标准部署、Cloud Repository 集成)。
根据documentation、"Creating App Engine-based cloud backends is not supported in Android Studio 3.0; however, your existing projects with cloud backends will continue to work in Android Studio."
它还建议改用 FireBase 创建新的移动后端。