Does Corona Labs collect analytics from apps built with Corona SDK by default?

I’m building a word game in Corona SDK.  I haven’t paid for the splash screen control plugin as I’m perfectly happy to let players know about Corona.  However, it’s important to me that the app not collect any user information or usage analytics in the background.  Can anyone tell me whether apps built using the free version of Corona SDK collect this kind of information.  If so, is there a way to deactivate this in the build.settings or config.lua file?

Thanks.

Hi @gregmcdo.

We do collect some minimal data when the app starts up to determine if you’re a daily active user. If you choose to use Ads those plugins also record their ad activity (ad shown, etc). 

If you must turn off the startup analytics (leaving them on is pretty harmless and it helps us out quite a bit), you can disable it by adding:

launchpad = false 

in your config.lua.

Rob

Hi @gregmcdo.

We do collect some minimal data when the app starts up to determine if you’re a daily active user. If you choose to use Ads those plugins also record their ad activity (ad shown, etc). 

If you must turn off the startup analytics (leaving them on is pretty harmless and it helps us out quite a bit), you can disable it by adding:

launchpad = false 

in your config.lua.

Rob