0

Previously, I was using this to access App Engine on the IPv4 address in the build.gradle file:

appengine {
    httpAddress = "0.0.0.0"
    httpPort = 8888
...
}

But after upgrading to Cloud Endpoint plugin, this option has removed. Any help would be welcome.

Ryan A.
  • 411
  • 4
  • 13
Ajeet
  • 1,540
  • 1
  • 17
  • 30

1 Answers1

2

If you're using the new app-gradle-plugin, you want this:

appengine {
  run {
    host = "0.0.0.0"
    port = 8080
  }
}

See new plugin documentation.

saiyr
  • 2,575
  • 1
  • 11
  • 13
  • It worked :D. Can you answer me this question? https://stackoverflow.com/questions/48404237/debug-app-engine-on-intellij-idea-with-endpoint-framework-and-gradle – Ajeet Jan 26 '18 at 00:16