Please refer to: https://www.takuad.com/privacy-policy
| Key | explain |
|---|---|
| isCanUseLocation | Is it permitted to use geographical information |
| isCanUseWifiState | Is the use of Wi-Fi status permitted |
| isCanUseOaid | Is the use of OAID permitted |
| isCanUseAndroidId | Is it allowed to use the Android ID |
| isCanUsePhoneState | Is it permitted to use the information related to the phone status |
| isCanUseMacAddress | Is the use of MAC addresses permitted |
| isCanUseIp | Is the use of IP information permitted |
| isCanUseIdfa | Is the use of IDFA permitted, It is mainly used in iOS |
| isCanUseAppList | Is it permitted to use the application installation list |
| isCanUsePermissionRecordAudio | Is the permission for recording allowed |
| isCanPersonalRecommend | Is personalized recommendation allowed |
| isCanShake | Octopus By default, it can be shaken without being transmitted |
| forbidSensor | beizi Disable the sensor (such as for shaking) if it doesn't work; otherwise, keep the default setting of not disabling it |
| networkFirmIds | Specify the list of effective advertising source network firm IDs. An empty list or no transmission usually indicates no filtering by advertising source |
//v6.5.73+, Plugin version 1.0.15 and above are supported
setAdSourcePrivacyPolicy() async {
await ATInitManger.setAdSourcePrivacyPolicy(
policy: {
'isCanUseLocation': false,
'isCanUseWifiState': true,
'isCanUseOaid': true,
//A list of network firm IDs for which the advertisement will take effect (if not specified, it means no filtering by advertisement source will be performed)
//'networkFirmIds': [8, 15, 22],
},
);
}
//It is recommended to set it before initialization, or at the latest before loading.