You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mixpanel allows setting event properties by passing a Map<String, Object> properties using set*Map() methods. It would be nice to have this same functionality with Amplitude.
The text was updated successfully, but these errors were encountered:
Yes. Construction of a JSONObject is really messy in the client code. It would be better to do the Map -> JSONObject conversion within the AmplitudeClient.
Can't we have similar methods like logEvent() that takes Map instead of JSONObject? And perform final JSONObject jsonObject = new JSONObject(map); within those methods?
Mixpanel allows setting event properties by passing a
Map<String, Object> properties
usingset*Map()
methods. It would be nice to have this same functionality with Amplitude.The text was updated successfully, but these errors were encountered: