Greetings,
I am making a call to the following function to check if there is an internet connection :
----------------------------------------------------------------------------- -- checkNetworkConnection ----------------------------------------------------------------------------- networkConnectivity = function () local cnx = socket.connect ('www.google.com', 80) if (cnx == nil) then return false end cnx: close() return true end
This works fine when I build with a development profile. But when I submit to the Apple Store, it does not work.
Likewise, php script are called from the app and they fail.
Are there any particular permissions that should be set in the build.settings?