Skip to main content
Version: 3.2.0

Segments & Placements

Segments

Segments are used to track statistics for various user categories and manage ads for this categories. A segment is a fraction of audience outlined based on certain parameters: e.g. gender, age or any other parameters known to the app and passed to Appodeal SDK. Additional ad management settings can be applied to each segment. Read more on segments in our FAQ.

Once user segments have been created, they can then be analyzed and used to configure ads.

To create a new segment go here.

info

If you have no segments, all users will be assigned to default segment.

If you have multiple segments, their order is important. Only the first segment related to the given user will apply. All of the rest will be ignored.


Manual Filters

Manual Filters allow to group users by any available metric. E.g. you know the sources that directed users to your app and you want to track the statistics for such sources — create a segment for each source and mark each user with the source they came from.

To create such a segment, you have to set its name and value:

Appodeal.SetCustomFilter("KEY_STRING", "SOME_VALUE");
Appodeal.SetCustomFilter("KEY_BOOL", true);
Appodeal.SetCustomFilter("KEY_INT", 42);

Appodeal.ResetCustomFilter("KEY_STRING");

Value can be boolean, numeric or string-based.


Bought In-Apps and In-Apps Amount Filters

Bought In-Apps allows to group users by the fact of purchasing in-apps. This will help you adjust the ads for such users or turn them off if needed.

In-Apps Amount filter allows you to group users who’ve made a particular amount of in-app purchases.

Please submit the purchase info via Appodeal SDK to make these settings work correctly.

Appodeal.TrackInAppPurchase(5.0,"USD");

If you have no segments, all users will be assigned to default segment.

If you have multiple segments, their order is important. Only the first segment related to the given user will apply. All of the rest will be ignored.

Placements

Appodeal SDK allows you to tag each impression with different placement. Read more on placements in our FAQ.

To show an ad with placement, you have to call show method like this:

Appodeal.Show(adType, "placementName");

To check if an impression is available for a given placement, use:

if(Appodeal.CanShow(adType, "placementName")){
Appodeal.Show(adType, "placementName");
}

You can configure your impression logic for each placement.

If you have no placements or call Appodeal.Show() with placement that does not exist, the impression will be tagged with default placement with corresponding settings applied.

Important!

Placement settings affect ONLY ad presentation, not loading or caching.