You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I open my browser on my phone or on my pc I can access my phone's IP o port 5000 and I am able to see the message 'Hello world'. But on my app I only see the loading message.
Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
The webview bootstrap repeatedly pings localhost until it becomes available, logging this message whenever the ping fails. As such, this is not a bug.
If you have a different problem, e.g. the pinging never works, please open a new issue with the full details of your build and the logcat log. Before doing so, check the log for python tracebacks - the most likely cause of this problem is that the python process crashes.
I'm trying to use webview bootstrap but I get this message on my log:
25908 25953 V WebViewLoader: Could not ping localhost:5000
And my app stucks on Loading window.
This is my code:
`from flask import Flask
app = Flask(name)
@app.route('/')
def main_page():
return 'hello world'
app.run(debug=False, host='0.0.0.0')
`
If I open my browser on my phone or on my pc I can access my phone's IP o port 5000 and I am able to see the message 'Hello world'. But on my app I only see the loading message.
Am I doing something wrong?
The text was updated successfully, but these errors were encountered: