I’ve read about this being a common issue but I don’t understand how to solve it. If anyone could give me any insights it would be great.
heres an example post requst im making
local payload = api.getInfo() payload.username = mime.b64(username) payload.password = mime.b64(password) local params = {} params.body = queryString(payload) network.request(api.url .. "authenticate/post", "POST", networkListener, params)
works great on every platform except my coworkers note 2 which uses android 4.3. read that this version of android drops connections easily. We’ve tried it on both our http and https server and the result seems to be the same. this is the error
4-06 10:57:26.891 15872-16105/? E/Corona: ERROR: null
04-06 10:57:26.921 15872-15885/? W/System.err: at com.ansca.corona.CoronaLua.dispatchEvent(CoronaLua.java:138)
04-06 10:57:26.921 15872-15885/? W/System.err: at com.ansca.corona.CoronaRuntimeTaskDispatcher$TaskEvent.Send(CoronaRuntimeTaskDispatcher.java:170)
04-06 10:57:26.921 15872-15885/? W/System.err: at com.ansca.corona.events.EventManager.sendEvents(EventManager.java:91)
04-06 10:57:26.921 15872-15885/? W/System.err: at com.ansca.corona.Controller.updateRuntimeState(Controller.java:300)
04-06 10:57:26.921 15872-15885/? W/System.err: at com.ansca.corona.graphics.opengl.CoronaGLSurfaceView$CoronaRenderer.onDrawFrame(CoronaGLSurfaceView.java:421)
04-06 10:57:26.921 15872-15885/? W/System.err: at com.ansca.corona.graphics.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1623)
04-06 10:57:26.921 15872-15885/? W/System.err: at com.ansca.corona.graphics.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1378)
would really appreciate some dumbed down instructions please