Google App Engine,gradle,打开端口

Google App Engine, gradle, open port

我正在使用 Android Studio 使用 Google 应用引擎端点开发 android 应用。

是否可以让本地应用引擎服务器打开它 运行 所在的端口?我正在尝试使用 phone 调试 android 应用程序,该应用程序与我的应用程序引擎服务器位于同一 LAN 中,但我无法这样做,因为端口未打开。 意思是,虽然我可以从服务器计算机访问 localhost:8080 的服务器程序,但我无法从 {server_ip}:8080 的 phone 访问它。

现在我确定我的路由器中的 port-forwarding 没有问题,因为 当我获取生成的 war 文件并将其部署到 tomcat 服务器时,我能够从我的 phone 访问该服务器。但那样我就无法在 Android Studio 中进行逐步调试了。

感谢 NNJ,

阅读 post () 后,我明白我应该在服务器模块的 build.gradle 中包含 httpAddress = '0.0.0.0',现在我可以从服务器外部到达端点。