Privacy Regulations
In order to protect the interests and privacy of our developers and your users, and conduct business in compliance with relevant laws, regulations, policies and standards。
#
Step 1 、Check the current region- Android V8.4.0.1 began to support
- Call this method before initializing the SDK
#
Step 2、CCPAIt mainly introduces how to set CCPA in the Android project: :
The California Consumer Privacy Act (CCPA) is the first comprehensive privacy law in the United States. Signed into law in late June 2018, it provides California consumers with a variety of privacy rights. Businesses subject to the CCPA will have several obligations to these consumers, including disclosure of information, consumer rights similar to the European Union's General Data Protection Regulation (GDPR), the right to "opt out" of certain data transfers, and the right to "opt-in" not The Rights of Adults.
#
When to set- Developers below V8.4.0.1 have to judge the region by themselves,If they are in the California region of the United States, they need to set CCPA and then initialize the SDK.
- V8.4.0.1 and above, you can call the `checkCurrentArea()` method to determine the region(see above to view the current area introduction), set CCPA when the monitor callback isCalifornia returns true, and then initialize the SDK.
#
TP APIPlatform | Method | Note |
---|---|---|
Android | TradPlusSdk.setCCPADoNotSell(context, boolean); | false California users do not report data ;true accept reported data |
Unity3dAndroid | TradPlus.setCCPADoNotSell(boolean); | false California users do not report data ;true accept reported data |
#
Meta Settings CCPAStarting from V6.9.4 API, according to the requirements of Meta (Facebook), developers need to set CCPA by themselves.
- If you need to integrate Meta, make sure to comply with Meta CCPA regulations 。
Please refer to data-processing-options
Please note that you need to set Facebook's Limited Data Use flag before initializing the TradPlus SDK.
Sample code :
#
Step 3、COPPAIt mainly introduces how to set COPPA in the Android project:
The Children's Online Privacy Protection Act mainly targets the online collection of personal information of children under the age of 13.
The protection law stipulates that website administrators should abide by privacy rules, must explain when to ask for consent from children's parents and provide verifiable methods, and website administrators must protect children's online privacy and safety, including restricting sales to children under the age of 13.
- Must be called before initializing TradPlus SDK
- If the application is for adults, you can upload it directly false
#
APIPlatform | Method | Note |
---|---|---|
Android | TradPlusSdk.setCOPPAIsAgeRestrictedUser(context, boolean); | false show that it is not a child ;true show that it is a child |
Unity3dAndroid | TradPlus.setCOPPAIsAgeRestrictedUser(boolean); | false show that it is not a child ;true show that it is a child |
#
Start.ioTPV9.3.0.1 and above versions support Start.io to configure Coppa in the AndroidManifest.xml file
The app is aimed at a mixed audience (that is, for everyone, including children and families), is a mixed user profile
true
, is not a mixed user profilefalse
- Indicates whether a particular end user is a child, is a child user pass
true
, is not a child user passfalse
#
Step 4、GDPRIt mainly introduces how to set GDPR in the Android project:
The General Data Protection Regulation (GDPR) is a regulation of data protection and privacy law for all citizens of the European Union (EU) and European Economic Area (EEA). We have added a privacy permission setting in the SDK. Please check the configuration below and complete the SDK integration.
On May 25, 2018, after the GDPR came into effect, Twitter, WhatsApp and other social apps updated their user terms, saying that they would prohibit teenagers under the age of 16 from using these apps. This is because there are strict regulations on the protection of children's personal information in the GDPR.
#
Android platform settings GDPR#
1、Use the TradPlus authorization page to set up GDPR- Called before initializing the TradPlus SDK
- Below V8.4.0.1, you need to call the TradPlusSdk.isEUTraffic(context) method to determine whether you are in the EU region, and only call showUploadDataNotifyDialog to set GDPR if you are in the EU region.
- For V8.4.0.1 and above, you can call the checkCurrentArea() method to determine the area(see above to view the current area introduction), and set GDPR when the monitoring callback isEu returns true.
Sample code (V6.X ~ V8.4.0.1)
#
2、Customize the pop-up window to set GDPRIn addition to using the TradPlus authorization page to set the GDPR level, developers can also set the GDPR through a custom pop-up window. You need to refer to the above API settings. The steps are as follows:
- 1、Before initializing TradPlus SDK, call to set GDPR monitoring;
- 2、 Set the GDPR monitoring
success
callback to determine whether you are in the EU region; if you are in the EU region, call your customized pop-up window and record the user's choice;; - 3、Set the GDPR monitoring
failed
callback to call your custom pop-up window and record the user's choice;
#
3、API Introduction#
(1)Set up GDPR Listener#
(3)Other APIsNote | method | Remark |
---|---|---|
Are you in the EU | TradPlusSdk.isEUTraffic(context); | Need to be called in setting GDPR Listener success callback |
Set GDPR level | TradPlusSdk.setGDPRDataCollection(context,level); | Parameter two: PERSONALIZED device data is allowed to be reported; NONPERSONALIZED device data is not allowed to be reported |
Get the GDPR rating | TradPlusSdk.getGDPRDataCollection(context); | Return value 0 means agree, 1 means disagree |
Is it the first time the user selects | TradPlusSdk.isFirstShowGDPR(context); | By default, false no selection has been made; true indicates that the user has selected |
Record the user's choice | TradPlusSdk.setIsFirstShowGDPR(context,true); | true Indicates that the user has made a choice and needs to onAuthResult be called in the callback for setting the GDPR level on the authorization page |
Set up GDPR children | TradPlusSdk.setGDPRChild(context,boolean); | true Indicates that the user is a child |
#
Unity3DAndroid platform settings GDPR#
1、Use the TradPlus authorization page to set up GDPR- Called before initializing the TradPlus SDK
- Below V8.4.0.1, you need to call the TradPlusSdk.isEUTraffic(context) method to determine whether you are in the EU region, and only call showUploadDataNotifyDialog to set GDPR if you are in the EU region.
- For V8.4.0.1 and above, you can call the checkCurrentArea() method to determine the area(see above to view the current area introduction), and set GDPR when the monitoring callback isEu returns true.
Sample code (V6.X ~ V8.4.0.1)
#
2、Customize the pop-up window to set GDPRIn addition to using the TradPlus authorization page to set the GDPR level, developers can also set the GDPR through a custom pop-up window. You need to refer to the above API settings. The steps are as follows:
- 1、Before initializing TradPlus SDK, call to set GDPR listener;;
- 2、Set the GDPR monitoring
success
callback to determine whether you are in the EU region; if you are in the EU region, call your customized pop-up window and record the user's choice; - 3、Set the GDPR monitoring
failed
callback to call your custom pop-up window and record the user's choice;;
#
3、API Introduction#
(1) Set up GDPR Listener#
(2)Call the authorization page to set GDPR#
(3)Other APIs- Other version API
Note | Method | Remark |
---|---|---|
Are you in the EU | `TradPlus.isEUTraffic(); | Need to be called in setting GDPR Listener success callback |
Set GDPR level | TradPlus.setGDPRDataCollection(int); | 0 The device data is allowed to be reported; 1 The device data is not allowed to be reported |
Get the GDPR rating | TradPlus.getGDPRDataCollection(); | Return value 0 means agree, 1 means disagree |
Is it the first time the user selects | TradPlus.isFirstShow(); | By default, false no selection has been made; true indicates that the user has selected |
Record the user's choice | TradPlus.setFirstShow(true); | true Indicates that the user has made a choice, and the method provided by TradPlus TradPlus.showUploadDataNotifyDialog() has been called by the developer |
Set up GDPR children | TradPlus.setGDPRChild(boolean); | true Indicates that the user is a child, only supported by Admob's Support |
#
Step 5、How to set up DFFp
- If the application needs to comply with the Google Play family policy requirements, the following code needs to be set. For more information, please refer to the Google Designed For Families (DFF)policy
- Set the location where the earliest ad request is initiated, or both can be set (for example: access to IronSource incentives and interstitial screens, the type of loadAd request that is initiated first is set first)
TradPlus version | advertising platform |
---|---|
V8.7.0.1 | Inmobi、ChartBoost、AdColony、IronSource、TapJoy |
#
Step 6、How to set LGPDLei Geral de Proteção de Dados (LGPD) is a comprehensive Brazilian data protection law, effective September 18, 2020, that provides individuals with broader data rights and increases compliance responsibilities for organizations. At its core, the LGPD is about giving Brazilian residents greater control over their personal data and giving national regulators new powers to impose hefty fines on organizations that violate the law, with rights and protections similar to those afforded to European residents by the GDPR.
- Must be called before initializing TradPlus SDK
- Only need to call in Brazil, do not set in non-Brazilian regions
Note | Method | Remark |
---|---|---|
Set LGPD level | TradPlusSdk.setLGPDConsent(Context context, int consent) | Parameter 2: 0, device data is allowed to be reported; 1, device data is not allowed to be reported |
Get LGPD rating | TradPlusSdk.getLGPDConsent(Context context) | Return value 0 means agree, 1 means disagree |
#
Step 7、Google Content Rating- V9.4.0.1 began to support
- Called before requesting an ad, taking a rewarded video as an example:
- digital content label
digital content label | illustrate |
---|---|
RequestConfiguration.MAX_AD_CONTENT_RATING_G | all audiences |
RequestConfiguration.MAX_AD_CONTENT_RATING_T | teenager |
RequestConfiguration.MAX_AD_CONTENT_RATING_MA | aldult |
RequestConfiguration.MAX_AD_CONTENT_RATING_PG | Need to be accompanied by parents to watch |