Manual Filters
Manual Filters allows to group users by any available characteristics. E.g. you know the sources that directed users to you and you want to track the statistics for such users — group them into a segment.
To create such a segment you have to give the SDK the name of the criterion and an actual value for it. Value can be boolean, numeric or string-based.
Android example:
Appodeal.setCustomFilter(name, value);
Appodeal.setCustomFilter(name, value)
iOS example:
Appodeal.setCustomState(["some key" : "some value"])
[Appodeal setCustomState:@{@"some key": @"some value"}];
Unity example:
Appodeal.SetCustomFilter("SOME_KEY", "SOME_VALUE");