Analytics Service

Overview

TweakAnalyticsConfig

void TweakAnalyticsConfig(int eventsGroupSize, int syncTimeInterval)

This method allows you to tweak the analytics configuration by setting the size of events groups and the synchronization time interval. This affects the lifecycle of sending analytics.

ResetAnalyticsConfig

void ResetAnalyticsConfig()

This method resets the analytics configuration to its default settings. This affects the lifecycle of sending analytics.

TweakUserLocale

void TweakUserLocale(string languageTag)

This method updates the user's locale using the specified language tag. This method simulates changing the language in the application's settings (but it doesn't do the actual locale change).

Advanced

The methods that become available with advanced Magify SDK integration are described here. They provide an opportunity to gather more detailed analytics and game data.

Properties

OnBeforeSendEvent

IObservable<CustomEvent> OnBeforeSendEvent { get; }

The observable is only notified in the TrackEvent methods before sending a custom event to Magify.

OnAfterSendEvent

IObservable<CustomEvent> OnAfterSendEvent { get; }

The observable is only notified in the TrackEvent methods after sending a custom event to Magify.

Analytics events tracking

TrackEvent

void TrackEvent(string name, Dictionary<string, object> @params);
void TrackEvent(CustomEvent @event);

This method is used to track custom events. It accepts two parameters:

  • name – name of the event to be tracked;
  • @params – additional parameters to be included in the event;
  • @event - abstraction over parameters above;

SetGameMode

void SetGameMode(string mode)

Call this method each time the game mode changes to ensure correct analytics tracking.

SetGameLevel

void SetGameLevel(int level)

Call this method each time the game level changes to ensure correct analytics tracking.

SetGameMaxLevel

void SetGameMaxLevel(int level)

Call this method each time the maximum game level changes to ensure correct analytics tracking.

Transactions

TrackIncomeTransaction

void TrackIncomeTransaction(string source, List<BonusInfo> bonuses, ProductInfo product = null);
void TrackIncomeTransaction(string source, List<BonusInfo> bonuses, string productId = null, PurchaseInfo purchaseInfo = null);
void TrackIncomeTransaction(string source, List<BonusInfo> bonuses, ProductObtainResult result);

This method sends transaction info to Magify.

  • source – text identifier for income source (e.g., inApp, reward, etc.);
  • bonuses – list of incoming bonuses within the transaction (name, quantity, and final balance);
  • productId (optional) - identifier of the product that was purchased;
  • product (optional) – product info including productId, price, and currency;
  • purchaseInfo (optional) - meta-information about purchased product;
  • result (optional) - type that includes a lot of information about purchased product;

TrackExpenseTransaction

void TrackExpenseTransaction(List<BonusInfo> bonuses)

The method is used to track spending, call it every time a player uses bonuses, passing the bonus used as an argument.

Related articles

IInAppStore

IMinimalAdsMediator

SDK Initialization

CreativeBackground

InfoProduct

ICampaignHandler