Hello there,
I am developing an app with this wonderful SDK, everything seems fine but there is one issue with network requests and ANDROID devices. There are two issues:
1- Http
Normal http requests seems to be randomly failing, returning no response at all, thats it, on the callback handler, request.response == nil, and so is request.status (to check for a 200 ).
For example, I could usually do 3 requests, and after that, for the next second or so every request will return no response.
I have tried adding every kind of headers to the request, and also the server response, with no susscess yet.
This ONLY happens on android real devices, works fine on IOS, corona emulator and even android emulator.
2- Https
Compared to normal https, https is always returning no response, always.
I have tested the certificates, and they are fine since I can browse with the device explorer to the site just fine without any certificate warning.
Again, this only happens on android devices.
And also, google and facebook Https seem to work fine with the exact same requests.
So both problems might be related to the server, but who knows why it only breaks with android. So I’m guessing there might a header I haven’t tested yet or another parameter/configuration on the android device.
Additional info: Android devices tested were a sony xperia Z with android 4.3 and samsung galaxy S3 and S4.
Web server is apache hosted on windows, running python/django framework.