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
- AdGyde.setAge(Context context, int years, int month, int day);
- AdGyde.setAge(Context context, int age);
| // Age to be calculated from Year, Month, DayAdGyde.setAge(context, 1991, 05, 03); // Age ValueAdGyde.setAge(context, 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 : AdGyde.setGender(Context context , String gender);
Values which are permitted in Function
 
  
 
 
 Syntax : AdGyde.setGender(Context context , String gender);
Values which are permitted in Function
- Male (M)
- Female (F)
- Others (O)
| // when you pass string for MaleAdGyde.setGender(context, AdGyde.M); // when you pass string for FemaleAdGyde.setGender(context, AdGyde.F); // when you pass string for OthersAdGyde.setGender(context, AdGyde.O); | 

 
 
