Hi,I encountered the following problem:When using the Android SDK I
would like to send the user's individual game score as a numeric value
together with an action.So in Android I normally useHashMap cdata = new
HashMap();cdata.put("myapp.evar.game_score",
12345);Analytics.trackAction("myapp.action.game_score_changed_action",
cdata);The eVars are created in the web dashboard. This work nice for a
defined set of values, but doesn't work very well for numeric values.I
would like to apply a filterin...