Limiting Data Collection
If you would like to restrict the data that Teak collects, for all users of your
game, you can specify these options in your AndroidManifest.xml for Android,
and in your Info.plist for iOS.
Push Key
| If you prevent Teak from collecting the Push Key, Teak will no longer be able to send Local Notifications or Push Notifications for your game. |
Facebook Access Token
IDFA
| If you prevent Teak from collecting the Identifier For Advertisers (IDFA), Teak will no longer be able to sync audiences to Facebook Ad Audiences. |
Testing Your Data Collection Configuration
To make sure that your changes have been implemented properly, examine the debug logs.
Search the logs for the configuration.data_collection event, you should see
something like the following:
{
"event_type":"configuration.data_collection",
"event_data":{
"enableIDFA":true,
"enableFacebookAccessToken":true,
"enablePushKey":true
}
}
Check that any data collection you have disabled shows up as false instead of true.