Event Tracking

Tracking ad revenue

How to track ad revenue

You can track ad revenue using the Noctua.Event.TrackAdRevenue() function.

Example

Noctua.Event.TrackAdRevenue("source", 100, "USD", new Dictionary<string, object>() {
    { "MyParam", "MyValue" }
});

Parameters

  • source: The source of the ad revenue. Use admob_sdk for AdMob or applovin_max_sdk for AppLovin MAX.
  • revenue: The revenue of the ad.
  • currency: The currency of the ad revenue.
  • parameters: A dictionary of parameters to track with the event.
Previous
Custom events tracking