COPPA compliance
By default, Adtrace SDK doesn't mark app as COPPA compliant. In order to mark your app as COPPA compliant, make
sure to call setCoppaCompliantEnabled method of AdTraceConfig instance with boolean parameter true:
- Java
- Javascript
adtraceConfig.setCoppaCompliantEnabled(true);
adtraceConfig.setCoppaCompliantEnabled(true);
Note
By enabling this feature, third-party sharing will be automatically disabled for the users. If later during the app lifetime you decide not to mark app as COPPA compliant anymore, third-party sharing will not be automatically re-enabled. Instead, next to not marking your app as COPPA compliant anymore, you will need to explicitly re-enable third-party sharing in case you want to do that.