I’ve looked a little bit at the network connections for some Corona games. Would have much preferred if Corona could tell us about this instead.
I’ve looked at about 8 games made with corona, some premium some free and some with ads plugins. Some are a bit older and some are newer - including 2 games that are currently featured in the App Store. I’ve used an iphone 7 running ios11.3 , and a HTTP proxy with an SSL cert to look at the requests. (https://www.charlesproxy.com/). In the data pasted here i’ve changed the numbers and identifiers to not call out anyones game, but i’ve kept the form/length of the id’s etc
First, on startup every game sends a request to https://stats.coronalabs.com/analytics/device/v1 and it looks like this:
{“tm”:1525258131,“pl”:“iOS11.3”,“id”:“81bc20ca49a881908d7d11372a9b2ad1”,“bi”:“com.company.appname”}
I’m not 100% sure what id is being sent here - but i think it’s the IDFV because the id is same for apps from the same publisher but differs otherwise. Would be interesting to test this on Android as well.
And secondly, there are requests being made to monetize-api.coronalabs.com. I’ve only seen this in games using the Appodeal plugin so far. But might be true for more games using different ad plugins? Worth mentioning is that there’s still calls being made to Appodeals servers as well as the different ad networks being used. These calls are then repeated with different event statuses when an ad is shown / requested etc.
monetize-api.coronalabs.com
{
“status”: “success”,
“message”: null,
“data”: {
“device_manufacturer”: “apple”,
“device_resolution”: “750x1334”,
“os_name”: “iOS”,
“app_name”: “APP NAME”,
“version”: “VERSION NUMBER”,
“app_version”: “APP VERSION NUMBER”,
“sdk_version”: “1.0”,
“app_bundle_id”: “com.company.appname”,
“sdk_platform”: “corona”,
“os_version”: “11.3”,
“ios_idfv”: “71LII240-7122-44B8-A0D2-384B5020B94F”,
“device_model”: “iPhone9,3”,
“name”: “plugin.appodeal”,
“ios_idfa”: “71LII240-7122-44B8-A0D2-384B5020B94F”,
“open_udid”: “71LII240-7122-44B8-A0D2-384B5020B94F”,
“device_id”: “71LII240-7122-44B8-A0D2-384B5020B94F”,
“lat”: 0,
“long”: 0,
“dnt”: 0,
“event”: “request”,
“placement”: “rewardedVideo”,
“timestamp”: 1525258731
}
}