Hello,
We’re using CoronaCards on iOS. As you can see from the title We’re getting this error:
attempt to index global ‘network’ (a nil value)
I tried moving the “network.download()” call to be the very first line in the main.lua file and still the issue remains. From reading similar issues, it says that something has overridden the “network” variable, but nothing really had the chance to do so as it was the very first line.
Viewing all the variables like so:
for k,v in pairs(_G) do
print(k,v)
end
I see every other GLOBAL variable, but no network.
Really need help understanding at what point network is being declared and what could override it?
Thank you,
Mars