I run appengine local dev server in eclipse with params 0.0.0.0
When I try to access any of the methods I get the following error. I get the same error if I try to a
You must make your development server accessible to the network by setting it to listen to external connections. You can do this by editing the build.gradle for the backend project and setting the httpAddress.
appengine {
....
httpAddress = "0.0.0.0"
....
}
You must also change the endpoint root url to point to your computer's ip address when creating the endpoint .
Registration.Builder builder = new Registration.Builder(AndroidHttp.newCompatibleTransport(),
new AndroidJsonFactory(), null)
.setRootUrl("http://:8080/_ah/api/")
....
best reference is here