Demography
 AdGyde demography data provides details of Age and Gender wise segregation of User, this can be used by Advertiser to target the new users and run their campaigns effectively. Campaigns can be run, keeping in mind that the application is say - majorly used by Females and 26-35 Age group, so Advertiser can ask a publisher to target only these groups and get maximum installs and return on the cost spent. 
For Age Profile
 
For Gender Profile
 
 For Age Profile
 The user age profile demography shows the advertiser the user segregation and user concentration on specific age segments. Having this data assists app marketer to take more accurate measurements and helps in decision making. 
Data can be passed to SDK by following 2 functions
 
  
 
 
 Data can be passed to SDK by following 2 functions
- AdgydeManager.SharedInstance.OnsetAge(int years, int month, int day);
- AdgydeManager.SharedInstance.OnsetAge(int age);
| // Age to be calculated from Year, Month, DayAdgydeManager.SharedInstance.OnsetAge(1991, 05, 03); // Age ValueAdgydeManager.SharedInstance.OnsetAge(32); | 

For Gender Profile
 The User gender profile demography shows the advertiser the user segregation and user concentration on specific Gender segments. Having this data, assists app marketer to take more accurate measurements and helps in decision making. 
Syntax : AdgydeManager.SharedInstance.OnsetGender(String gender);
Values which are permitted in Function
 
  
 
 
 Syntax : AdgydeManager.SharedInstance.OnsetGender(String gender);
Values which are permitted in Function
- Male (M)
- Female (F)
- Others (O)
| // when you pass string for MaleAdgydeManager.SharedInstance.OnsetGender("M"); // when you pass string for FemaleAdgydeManager.SharedInstance.OnsetGender("F"); // when you pass string for OthersAdgydeManager.SharedInstance.OnsetGender("O"); | 

 
 
