User Targeting
Pass user targeting information to ad requests
General Information
Some networks support adding additional information to improve the ads for the current app context. In addition to key-value targeting, AATKit supports user targeting, allowing to pass information like:
User ID
Gender
Year of birth
List of keywords
Usage
AATKitUserTargeting aatKitUserTargeting = new AATKitUserTargeting();
aatKitUserTargeting.setUserID("USER_ID");
aatKitUserTargeting.setGender(AATKitGender.MALE);
aatKitUserTargeting.setYearOfBirth(1990);
aatKitUserTargeting.setKeywords(Arrays.asList("keyword1", "keyword2"));
AATKit.setUserTargeting(aatKitUserTargeting);
Year of birth must be 4-digit number
Each field in AATKitUserTargeting is optional
Last updated