-
public interface TrackedScreenParamsProviderAn optional interface that Activities or Fragments can implement to provide dynamic additional parameters for screen tracking events. The keys for these parameters should correspond to the
additionalParamsspecified in the TrackScreen annotation.
-
-
Method Summary
Modifier and Type Method Description abstract Map<String, Object>getTrackedScreenParams()Returns a map of key-value pairs representing additional dynamic parameters to be included with the screen tracking event. -
-
Method Detail
-
getTrackedScreenParams
abstract Map<String, Object> getTrackedScreenParams()
Returns a map of key-value pairs representing additional dynamic parameters to be included with the screen tracking event. The keys in this map should match the strings provided in the
additionalParamsarray of the TrackScreen annotation.
-
-
-
-