本文介绍了从 Android Studio 部署 Google App Engine 后端的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在 Android Studio 中将 Google App Engine 后端模块部署为 Google App Engine 项目(在 Google 的服务器上)?在 Eclipse 中,这可以通过插件实现,但现在我不知道如何执行此操作或发现其他人正在执行此操作.
Is it possible to deploy a Google App Engine backend module in Android Studio as a Google App Engine project (on Google's servers)? In eclipse this was possible with the plugin, but now I don't see how to do this or found someone else doing this.
推荐答案
如果你想了解 gradle 的内幕:
If you want to see what's under the hood of gradle:
gradlew tasks
如果你只想要 .war 文件
If you want only the .war file
gradlew war
将完成这项工作:
gradlew appengineUpdate
这篇关于从 Android Studio 部署 Google App Engine 后端的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!