If you are currently using tracking from Firebase, you need to replace all of them and use tracking from the SDK system.

Reference

  com.ikame.android.sdk.tracking.IKTrackingHelper#sendTracking
  

Function Definition

  fun sendTracking(
    eventName: String,
    vararg param: Pair<String, String?>
)
  

Parameters:

  • eventName: The name of the event you want to track.
  • param: Optional parameters to provide additional details about the event. Each parameter is a key-value pair where the key is a String describing the parameter, and the value is a nullable String containing the parameter’s value.

Sample usage