Hi.
I need a privacy policy. Basically, my game is free and has no advertisement.
However, I am not sure if Unity3d doesn’t send any player info (hardware,IP) as they seem to do for player(it says so in Unity3d privacy policy).
So, I just want to be on safe side with this “privacy policy” stuff.
Hi. I don’t believe I can not get this question answered? Is no one else concerned with this privacy policy stuff?
So does Unity android player sends anything around without my knowledge?
You can disable the HW collection from player settings. And if you disable networking, then then Unity cannot send any info forward.
Thanks.
And how do I disable networking?
BR,ivan
IIRC it should be disabled by default if you don’t use www class or check network state in your app. You can verify this when you install the apk to device (check settings and your app, it should show what permissions it uses).
You can also use your own Android manifest file and make sure there aren’t following lines
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />