This works on xCode Simulator and device, but will cause a crash on Android:
[lua]
[“CoronaProvider.ads.iads”] =
{
– required
publisherId = “com.coronalabs”,
},
[/lua]
This works on all devices but not on xCode Simulator:
[lua]
[“CoronaProvider.ads.iads”] =
{
– required
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone = true },
},
[/lua]
Is there a flag I can use so it will work on an iOS device, xCode Simulator and Android devices? It’s so frustrating when you wait for a build for the simulator and then realise you still have the flag selected from a device build or vice versa.