setTargetingInfoForPlacement
Overview
Sets the targeting information for the given placement. Information provided for placement overrides targeting information for application set by the setTargetingInfo. Note: This function doesn't affect in-feed banner ads. For in-feed banner placement, please use setTargetingInfoForInFeedBannerPlacement function.
Syntax
setTargetingInfoForPlacement(placementName, info)
placementName (REQUIRED)
string. Placement identifier.
info (REQUIRED)
The JSON object containing targeting information.
Examples
RNAatkit.setTargetingInfoForPlacement(
"BannerPlacement",
{
"abc" : [
"123",
"456",
"789"
],
"def" : [
"xyz",
"zyx"
]
}
);
Last updated