The CPRA (California Privacy Rights Act) is an addendum to the CCPA (California Consumer Privacy Act). The CPRA will go into effect on 1st January 2023 but will be enforceable from 1st July 2023.
While there are a few differences, especially new consumer rights added, the main changes revolve around sharing personal data and introducing the SPI category (Sensitive Personal Information) - which includes precise geolocation.
To become compliant with CPRA, you must follow the instructions below:
You can indicate to InMobi and their ad tech partners when a California resident opts out of interest-based advertising using the do_not_sell
flag at the request level. The same applies to our mediation partners and supported header bidding solutions.
You must handle the indication of user opt-out through the do_not_sell
flag by setting its value to true
or false
:
do-not-sell
flag to true
.do-not-sell
flag to false
. If you don't set the value, it picks up false
by default.You can set this flag at a request level as follows:
IMInterstitial *interstitial = [[IMInterstitial alloc] initWithPlacementId: placementId delegate: delegate];
NSMutableDictionary *extras = [NSMutableDictionary new];
[extras setObject:<*NSNumber value of do_not_sell Flag*> forKey: @"do_not_sell"];
interstitial.extras = extras;
InMobiInterstitial interstitialAd = new InMobiInterstitial(InterstitialAdsActivity.this, placementID,
mInterstitialAdEventListener);
HashMap extras = new HashMap<String, String>();
extras.put("do_not_sell", "<String from do_not_sell Flag> 1 : 0");
interstitialAd.setExtras(extras);
val interstitialAd = InMobiInterstitial(this@InterstitialAdsActivity, placementID,
mInterstitialAdEventListener)
var extras = HashMap<String, String>()
extras["do_not_sell"] = "<String from do_not_sell Flag> 1 : 0"
interstitialAd.setExtras(extras)
By installing this SDK update, you agree that your Children Privacy Compliance setting remains accurate or that you will update that setting, whenever there is a change in your app's audience. You may update the app's Children Privacy Compliance settings at https://publisher.inmobi.com/my-inventory/app-and-placements.