Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以前,我使用它在 build.gradle 文件中的 IPv4 地址上访问 App Engine:
appengine { httpAddress = "0.0.0.0" httpPort = 8888 ... }
但升级到 Cloud Endpoint 插件后,此选项已删除。欢迎任何帮助。
如果您使用的是 new app-gradle-plugin,则需要:
app-gradle-plugin
appengine { run { host = "0.0.0.0" port = 8080 } }
请参阅新插件文档。