Please take a look at our Expert tips before integrating the events.
Onboarding (tutorial)
The Tutorial steps event allows you to evaluate the effectiveness of the tutorial steps system. The event should be sent at the end of each tutorial step indicating the number of every passed step as a parameter.
Use the following constants to specify basic events of tutorial steps:
Start or -1 - at the beginning, before the first step is completed;
Finish or -2 - instead of the final step number;
Skipped or 0 - in case а user skipped the tutorial.
DevToDev.TutorialState.Start or -1 - at the beginning, before the first step is completed;
DevToDev.TutorialState.Finish or -2 - instead of the last step number;
DevToDev.TutorialState.Skipped or 0 - if a user skipped the tutorial.
DevToDev.TutorialState.Start or -1 - at the beginning, before the first step is completed;
DevToDev.TutorialState.Finish or -2 - instead of the last step number;
DevToDev.TutorialState.Skipped or 0 - if a user skipped the tutorial.
-1 - Start the tutorial (at the beginning, before the first step is completed)
-2 - Tutorial finished (instead of the last step number)
0 - Tutorial skipped (if a user skipped the tutorial).
DevToDev.TutorialState.Start or -1 - at the beginning, before the first step is completed;
DevToDev.TutorialState.Finish or -2 - instead of the last step number;
DevToDev.TutorialState.Skipped or 0 - if a user skipped the tutorial.
Start or -1 - at the beginning, before the first step is completed;
Finish or -2 - instead of the final step number;
Skipped or 0 - in case a user skipped the tutorial.
TutorialState.START or -1 - at the beginning, before the first step is completed;
TutorialState.FINISH or -2 - instead of the last step number;
TutorialState.SKIPPED or 0 - if a user skipped the tutorial.
-1 (Start) - at the beginning, before the first step is completed;
-2 (Finish) - instead of the number of the last step;
0 (Skipped) - in case a user skipped the tutorial.
In other cases use step numbers. Make sure you use numbers above 0 to enumerate the steps.
The logic of the use of the Skipped constant in the Tutorial steps event is provided only in case a user has completely refused to pass the tutorial. After Skipped is used, no other values of the Tutorial steps event must be received.
/**
* The event allowing to track the stage of tutorial a player is on.
* @param NSUInteger tutorialStep - the latest successfully completed tutorial step.
*/
[DevToDev tutorialCompleted: (NSUInteger) tutorialStep];
/*** The event allowing to track the stage of tutorial a player is on.* @param int tutorialStep - the latest successfully completed tutorial step.*/DevToDev.tutorialCompleted(int tutorialStep);
/*** <paramname="state"> The latest successfully completed tutorial step </param>*/DevToDev.SDK.Tutorial(int state)
/*** The event allowing to track the stage of tutorial a player is on.* @param{number} tutorialStep - the latest successfully completed tutorial step.*/devtodev.tutorialCompleted(tutorialStep);
/// <summary> The event allowing to track the stage of tutorial a player is on. </summary>/// <paramname="tutorialStep"> The latest successfully completed tutorial step </param>DevToDev.Analytics.Tutorial(int tutorialStep);
/**
* The event allowing to track the stage of tutorial a player is on.
* @param NSUInteger tutorialStep - the latest successfully completed tutorial step.
*/
[DevToDev tutorialCompleted: (NSUInteger) tutorialStep];
/*** The event allowing to track the stage of tutorial a player is on.* @param tutorialStep - the latest successfully completed tutorial step.*/DevToDev.tutorialCompleted(tutorialStep:int);
Blueprint
Code
// The event allowing to track the stage of tutorial a player is on.
// int32 step - the latest successfully completed tutorial step.
UDevToDevBlueprintFunctionLibrary::TutorialCompleted(int32 step);
Leveling up
This event is for games only.
You can analyze the distribution of the players over the levels. The event should be sent right after the player reached the next level. You can find more information on what is the right moment to use LevelUp event here.
/**
* Player has reached a new level
* @param NSInteger level - level reached by the player.
*/
[DevToDev levelUp: (NSInteger) level];
/*** Player has reached a new level* @param int level - level reached by the player.*/DevToDev.levelUp(int level);
/*** <paramname="level"> Level reached by the player </param>*/DevToDev.SDK.Level(int level);
/*** Player has reached a new level* @param{number} level - level reached by the player.*/devtodev.levelUp(level);
/// <summary> Player has reached a new level </summary>/// <paramname="level"> Level reached by the player </param>DevToDev.Analytics.LevelUp(int level);
/**
* Player has reached a new level
* @param NSUInteger level - level reached by the player.
*/
[DevToDev levelUp: (NSUInteger) level];
/*** Player has reached a new level* @param level - level reached by the player.*/DevToDev.levelUp(level:int);
Blueprint
Code
// Player has reached a new level// int32 level - level reached by the player.UDevToDevBlueprintFunctionLibrary::LevelUp(int32 level);
To track the average account balance of in-game currency by the end of each level, please provide the list of currency names and amounts.
/**
* Player has reached a new level
* @param NSInteger level - level reached by the player.
* @param NSDictionary resources - dictionary with the currency names and amounts
*/
NSDictionary * resources = @{@"Currency name 1" : @100, @"Currency name 2" : @10};
[DevToDev levelUp: (NSUInteger) level withResources: withResources: (NSDictionary *) resources];
/*** @param int level - level reached by the player* @param HashMap resources - hashmap with the currency names and amounts*/HashMap resources =newHashMap<String,Integer>();resources.put("Currency name 1",1000);resources.put("Currency name 2",10);DevToDev.levelUp(level, resources);
/*** <paramname="level"> Player level </param>* <paramname="resources">Dictionary with the currency names and amounts</param>*/Dictionary<string,int> resources =newDictionary<string,int>();resources.Add("Currency name 1",1000);resources.Add("Currency name 2",10);DevToDev.SDK.Level(level, resources);
/*** @param{number} level - player/character's "level"* @param{Object} resources - Object with data about currencies. Optional.* @param{Object[]} resources.balance - Account balance of in-game currency by the end of level. * Optional.* @param{Object[]} resources.balance[].currency - Game currency name* @param{Object[]} resources.balance[].amount - Game currency amount* @param{Object[]} resources.earned - Game currency earned during the level. Optional. * @param{Object[]} resources.earned[].currency - Game currency name* @param{Object[]} resources.earned[].amount - Game currency amount* @param{Object[]} resources.spent - Game currency amount spent during the level. Optional.* @param{Object[]} resources.spent[].currency - Game currency name* @param{Object[]} resources.spent[].amount - Game currency amount* @param{Object[]} resources.bought - Game currency amount bought during the level. Optional.* @param{Object[]} resources.bought[].currency - Game currency name* @param{Object[]} resources.bought[].amount - Game currency amount */devtodev.levelUp(level, resources);
/// <summary> Player has reached a new level</summary>/// <paramname="level"> Player level </param>/// <paramname="resources"> Dictionary with the currency names and amounts </param>/// <example>/// /// Dictionary<string, int> resources = new Dictionary<string, int>();/// resources.Add("Currency name 1", 1000);/// resources.Add("Currency name 2", 10);/// /// </example>DevToDev.Analytics.LevelUp(level, resources);
/**
* Player has reached a new level
* @param NSInteger level - level reached by the player.
* @param NSDictionary resources - dictionary with the currency names and amounts
*/
NSDictionary * resources = @{@"Currency name 1" : @100, @"Currency name 2" : @10};
[DevToDev levelUp: (NSUInteger) level withResources: withResources: (NSDictionary *) resources];
/*** Player has reached a new level* @param level - level reached by the player.* @param resources - dictionary with the currency names and amounts*/var resources:Dictionary=newDictionary();resources["Currency name 1"] =1000;resources["Currency name 2"] =10;DevToDev.levelUpWithResources(level:int, resources:Dictionary);
Blueprint
// Player has reached a new level// int32 level - level reached by the player.// TArray<FAnalyticsEventAttr> Attributes - dictionary with the currency names and amountsUDevToDevBlueprintFunctionLibrary::LevelUpWithAttributes(int32 level,const TArray<FAnalyticsEventAttr>& Attributes);
To track the average amount of in-game currency earned during a level, it is necessary to send a special event after each time an in-game account is replenished.
/* *
* @param NSString * currencyName - currency name (max. 24 symbols)
* @param NSInteger amount - the amount an account has been credited with.
* @param AccrualType accrualType - the way the currency was obtained: earned or purchased
*/
[DevToDev currencyAccrual: (NSInteger) amount withCurrencyName: (nonnull NSString *) currencyName
andCurrencyType: (AccrualType) accrualType];
/*** @param String currencyName - currency name (max. 24 symbols)* @param float currencyAmount - the amount an account has been credited with* @param AccrualType accrualType - the way the currency was obtained: earned or purchased*/DevToDev.currencyAccrual(currencyName, currencyAmount, accrualType);
/*** <paramname="currencyName">Currency name (max. 24 symbols)</param>* <paramname="currencyAmount ">The amount an account has been credited with</param>* <paramname="accrualType">The way the currency was obtained: earned or purchased</param>*/DevToDev.SDK.CurrencyAccrual(string currencyName,float currencyAmount, AccrualType accrualType);
/// <paramname="currencyName"> Currency name (max. 24 symbols) </param>/// <paramname="currencyAmount "> The amount an account has been credited with </param>/// <paramname="accrualType"> The way the currency was obtained: earned or purchased </param>DevToDev.Analytics.CurrencyAccrual(int amount,string currencyName, AccrualType accrualType);
/**
* @param NSString * currencyName - currency name (max. 24 symbols)
* @param float amount - the amount an account has been credited with.
* @param AccrualType accrualType - the way the currency was obtained: earned or purchased
*/
/* *
* @param NSString * currencyName - currency name (max. 24 symbols)
* @param NSInteger amount - the amount an account has been credited with.
* @param AccrualType accrualType - the way the currency was obtained: earned or purchased
*/
[DevToDev currencyAccrual: (NSInteger) amount withCurrencyName: (nonnull NSString *) currencyName
andCurrencyType: (AccrualType) accrualType];
/*** @param currencyName - currency name (max. 24 symbols)* @param currencyAmount - the amount an account has been credited with* @param accrualType - the way the currency was obtained: earned or purchased*/DevToDev.currencyAccrual(currencyName:String, currencyAmount:Number, accrualType:AccrualType);
To track payments, add this event right after the platform confirms that a payment went through.
/**
* Register transactions made through the platform's payment system.
*
* @param NSString * paymentId - transaction ID (max. 64 symbols)
* @param float inAppPrice - product price (in user's currency)
* @param NSString * inAppName - product name
* @param NSString * inAppCurrencyISOCode - transaction currency (ISO 4217 format)
*/
[DevToDev realPayment: (NSString *) transactionId withInAppPrice:(float) inAppPrice
andInAppName: (NSString *) inAppName andInAppCurrencyISOCode: (NSString *) inAppCurrencyISOCode];
A unique order identifier is a value of a transactionIdentifier property in SKPaymentTransaction object inside the receipt of completed transaction.
devtodev server does not process transactions with previously used transaction IDs. Also, the server validates identifiers in appearance to avoid evident cheat transactions.
To avoid adding cheat payments into reports completely, use devtodev anti-cheat service before creating a realPayment event.
/*** Register transactions made through the platform's payment system.** @param String paymentId - transaction ID (max. 64 symbols)* @param float inAppPrice - product price (in user's currency)* @param String inAppName - product name* @param String inAppCurrencyISOCode - transaction currency * (ISO 4217 format http://www.iso.org/iso/home/standards/currency_codes.htm Exapmle: "USD")*/DevToDev.realPayment(String paymentId,float inAppPrice,String inAppName,String inAppCurrencyISOCode);
How to find the transaction ID in GooglePlay transaction?
Find the INAPP_PURCHASE_DATA object In the JSON fields that are returned in the response data for a purchase order. A unique transaction identifier is the value of orderId property in INAPP_PURCHASE_DATA object. If the order is a test purchase made via the In-app Billing Sandbox, orderId property will be empty.
devtodev server does not process transactions with previously used transaction IDs. Also, the server validates the identifiers in appearance to avoid evident cheat transactions. To avoid completely the entering of cheat payments from GooglePlay in reports, use devtodev anticheat service before creating realPayment event.
/*** Register transactions made through the platform's payment system.* <paramname="orderId"> Transaction id </param>* <paramname="price"> Product price (in user's currency) </param>* <paramname="productId"> Product id (product name) </param>* <paramname="currencyCode"> Transaction currency (ISO 4217 format)</param>*/DevToDev.SDK.RealPayment(string orderId,float price,string productId,string currencyCode)
/// <summary> Register transactions made through the platform's payment system. </summary>/// <paramname="paymentId"> Transaction id </param>/// <paramname="inAppPrice"> Product price (in user's currency) </param>/// <paramname="inAppName"> Product id (product name) </param>/// <paramname="inAppCurrencyISOCode"> Transaction currency (ISO 4217 format)</param>DevToDev.Analytics.RealPayment(string paymentId,float inAppPrice,string inAppName,string inAppCurrencyISOCode);
/**
* Register transactions made through the platform's payment system.
*
* @param NSString * paymentId - transaction ID
* @param float inAppPrice - product price (in user's currency)
* @param NSString * inAppName - product name
* @param NSString * inAppCurrencyISOCode - transaction currency (ISO 4217 format)
*/
[DevToDev realPayment: (NSString *) transactionId withInAppPrice:(float) inAppPrice
andInAppName: (NSString *) inAppName andInAppCurrencyISOCode: (NSString *) inAppCurrencyISOCode];
/*** Register transactions made through the platform's payment system.* @param paymentId - transaction ID* @param inAppPrice - product price (in user's currency)* @param inAppName - product name* @param inAppCurrencyISOCode - transaction currency (ISO 4217 format)*/DevToDev.realPayment(paymentId:String, inAppPrice:Number, inAppName:String, inAppCurrencyISOCode:String);
How to find the transaction ID in iTunes transaction?
Unique order identifier is a value of "transactionIdentifier" property in SKPaymentTransaction object inside the receipt of completed transaction.
How to find the transaction ID in GooglePlay transaction?
Find the INAPP_PURCHASE_DATA object In the JSON fields that are returned in the response data for a purchase order. A unique transaction identifier is the value of orderId property in INAPP_PURCHASE_DATA object. If the order is a test purchase made via the In-app Billing Sandbox, orderId property will be empty.
devtodev server does not process transactions with previously used transaction IDs. Also the server validates the identifiers in appearance, to avoid evident cheat transactions. To avoid the entering of cheat payments in reports completely, use devtodev anticheat service before creating realPayment event.
Blueprint
Code
// Register transactions made through the platform's payment system.// FString transactionId - transaction ID// float inAppPrice - product price (in user's currency)// FString inAppName - product name// FString inAppCurrencyISOCode - transaction currency (ISO 4217 format)UDevToDevBlueprintFunctionLibrary::RealPayment(const FString& transactionId,float inAppPrice,const FString& inAppName,const FString& inAppCurrencyISOCode);
Virtual Currency Payment
This event is for games only.
To track expenditures of in-game currency and popularity of products, add this event right after the purchase.
/**
* In-app purchase with a definite article ID.
*
* @param NSString purchaseId - unique purchase Id or name (max. 32 symbols)
* @param NSString purchaseType - purchase type or group (max. 96 symbols)
* @param NSInteger purchaseAmount - count of purchased goods
* @param NSInteger purchasePrice - cost of purchased goods (total cost -if several goods were purchased)
* @param NSString purchaseCurrency - currency name (max. 24 symbols)
*/
[DevToDev inAppPurchase: (NSString *) purchaseId withPurchaseType: (NSString *) purchaseType
andPurchaseAmount: (NSInteger) purchase Amount andPurchasePrice: (NSInteger) purchaseprice
andPurchaseCurrency: (NSString *) purchaseCurrency];
In case a product is bought for several game currencies at once, it is necessary to make a dictionary that includes the names and amounts of the paid currencies.
/**
* In-app purchase with a definite article ID.
*
* @param purchaseId - unique purchase Id or name (max. 32 symbols)
* @param purchaseType - purchase type or group (max. 96 symbols)
* @param purchaseAmount - count of purchased goods
* @param purchasePrice - cost of purchased goods (total cost - if several goods were purchased)
* @param purchaseCurrency - currency name (max. 24 symbols)
*/
DevToDev.inAppPurchase(String purchaseId, String purchaseType, int purchaseAmount,
int purchasePrice, String purchaseCurrency);
In case a product was bought for several game currencies at once, it is necessary to make a hashmap that includes the names and amounts of the paid currencies.
HashMap resources = new HashMap();
resources.put("currency_1", 120);
resources.put("currency_2", 29);
…and so on…
DevToDev.inAppPurchase(String purchaseId, String purchaseType, int purchaseAmount, HashMap resources);
/**
* <param name="purchaseId"> Unique purchase ID or name (max. 32 symbols)</param>
* <param name="purchaseType"> Purchase type or group (max. 96 symbols)</param>
* <param name="purchaseAmount"> Number of purchased goods </param>
* <param name="purchasePrice"> Cost of purchased goods (total cost - if several goods were purchased)</param>
* <param name="purchasePriceCurrency"> Currency name (max. 24 symbols)</param>
*/
DevToDev.SDK.InAppPurchase(string purchaseId, string purchaseType, int purchaseAmount,
int purchasePrice, string purchasePriceCurrency)
In case a product was bought for several game currencies at once, it is necessary to make a hashmap including the names and amounts of the paid currencies.
Dictionary<string, int> resources = new Dictionary<string, int>();
resources.Add("currency_1", 120);
resources.Add("currency_2", 29);
//...and so on...
DevToDev.SDK.InAppPurchase(string purchaseId, string purchaseType, int purchaseAmount,
Dictionary<string, int> resources);
/**
* Tracks in-app purchases.
*
* @param {string} purchaseId - unique purchase Id or name (max. 32 symbols)
* @param {string} purchaseType - purchase type or group (max. 96 symbols)
* @param {number} purchaseAmount - count of purchased goods
* @param {Object[]} purchasePrice - array including the names and amounts of
* the paid currencies (total cost - if several goods were purchased)
* @param {string} purchasePrice[].currency - game currency name
* @param {number} purchasePrice[].amount - currency amount
*/
devtodev.inAppPurchase(purchaseId, purchaseType, purchaseAmount, purchasePrice);
/// <summary> In-app purchase with a definite ID. </summary>
/// <param name="purchaseId"> Unique purchase ID or name (max. 32 symbols)</param>
/// <param name="purchaseType"> Purchase type or group (max. 96 symbols)</param>
/// <param name="purchaseAmount"> Number of purchased goods </param>
/// <param name="purchasePrice"> Cost of purchased goods (total cost - if several goods were purchased)</param>
/// <param name="purchasePriceCurrency"> Currency name (max. 24 symbols)</param>
DevToDev.Analytics.InAppPurchase(string purchaseId, string purchaseType, int purchaseAmount,
int purchasePrice, string purchaseCurrency);
In case a product was bought for several game currencies at once, it is necessary to make a dictionary including the names and amounts of the paid currencies.
Dictionary<string, int> resources = new Dictionary<string, int>();
resources.Add("currency_1", 120);
resources.Add("currency_2", 29);
//...and so on...
DevToDev.Analytics.InAppPurchase(string purchaseId, string purchaseType, int purchaseAmount,
Dictionary<string, int> resources);
/**
* In-app purchase with a definite article ID.
*
* @param purchaseId - unique purchase Id or name (max. 32 symbols)
* @param purchaseType - purchase type or group (max. 96 symbols)
* @param purchaseAmount - count of purchased goods
* @param purchasePrice - cost of purchased goods (total cost -if several goods were purchased)
* @param purchaseCurrency - currency name (max. 24 symbols)
*/
[DevToDev inAppPurchase: (NSString *) purchaseId withPurchaseType: (NSString *) purchaseType
andPurchaseAmount: (NSInteger) purchase Amount andPurchasePrice: (NSInteger) purchaseprice
andPurchaseCurrency: (NSString *) purchaseCurrency];
In case a product was bought for several game currencies at once, it is necessary to make a dictionary including the names and amounts of the paid currencies.
/**
* In-app purchase with a definite article ID.
* @param purchaseId - unique purchase Id or name (max. 32 symbols)
* @param purchaseType - purchase type or group (max. 96 symbols)
* @param purchaseAmount - count of purchased goods
* @param purchasePrice - cost of purchased goods (total cost - if several goods were purchased)
* @param purchaseCurrency - currency name (max. 24 symbols)
*/
DevToDev.inAppPurchase(purchaseId:String, purchaseType:String, purchaseAmount:int, purchasePrice:int,
purchaseCurrency:String);
In case a product was bought for several game currencies at once, it is necessary to make a hashmap including the names and amounts of the paid currencies.
var resources: Dictionary = new Dictionary();
resources["currency_1"] = 120;
resources["currency_2"] = 29;
//...and so on...
DevToDev.inAppPurchaseWithResources(purchaseId:String, purchaseType:String, purchaseAmount:int,
resources:Dictionary);
Blueprint
Notice! If the purchase is done by more than one currency, then the method should be called as many times as many currencies were used, but the amount of purchase should be set only in one of the times.
Use the method “Record Simple Item Purchase with Attributes” from Analytics Blueprint Library.
Item Id field is the identifier of purchased item, Item Quantity is the amount of purchased item. Attributes array should contain the following obligatory information:
Code
// In-app purchase with a definite article ID.
// FString ItemId - unique purchase Id or name (max. 32 symbols)
// int32 ItemQuantity - count of purchased goods
//
// FString purchaseType - purchase type or group (max. 96 symbols)
// int32 purchasePrice - cost of purchased goods (total cost -if several goods were purchased)
// FString purchaseCurrency - currency name (max. 24 symbols)
FAnalytics::Get().GetDefaultConfiguredProvider()->RecordItemPurchase(const FString& ItemId,
int ItemQuantity,
const TArray<FAnalyticsEventAttribute>& Attributes);
Please keep in mind that there is a limit for the number of unique values of the "purchaseCurrency" parameter - 30 currencies per project. Currencies cannot be deleted or renamed.
Custom Events
If you want to count the events that are not among basic, use custom events.
Attention! We strongly recommend that you do not use custom event properties to transfer and store data that fits the definition of personal data!
The event must have a unique name and can include up to 20 parameters. The maximum length of the event name is 72 symbols.
Every parameter inside one event must have a unique name. The maximum length of the parameter name is 32 symbols.
The values of parameters can be string or number type (int, long, float, double). The maximum length of the parameter value is 255 symbols.
No more than 300 variants of custom event names can be used for one project. Try to enlarge events in meaning by using event parameters. Events that didn't get into the limit of unique event names will be discarded.
For a string parameter, it is acceptable to use not more than 50,000 unique values for the whole event history. In case the limit of unique values is exceeded, the parameter is ignored.
Therefore, we recommend not to set user IDs and Unix time as parameter values of custom events. Try to integrate parameter values if they have a very large variability. Otherwise, it will be very difficult to analyze the data or after some time it may be even ignored.
We strongly recommend not to change the type of data transferred in the parameter over time. In case you change the data type in parameter, it will be duplicated with the same name and different data types in devtodev database which will result in more complicated report building.
First of all, a Progression event is used for games with short (within one game session) locations/game levels. The event allows you to gather data on passing the locations and get statistics on parameters that vary during the location passing.
Developer must use the following two methods:
Method startProgressionEvent when entering the location:
/**
* The method have to be used when entering the location.
* @param String locationName - the name of location user entered.
* @param LocationEventParams params - instance of location parameters class
*/
[DevToDev startProgressionEvent: locationName withParameters: params];
Method endProgressionEvent when exiting (no matter if completed or not) the location:
/**
* The method have to be used when the location passing is over.
* @param String locationName - the name of location user left.
* @param LocationEventParams params - instance of location parameters class
*/
[DevToDev endProgressionEvent: locationName withParameters: params];
LocationEventParams class methods:
/**
* Location level of difficulty (optional).
* @param NSInteger difficultyLevel - level of difficulty
*/
[params setDifficulty: difficultyLevel];
/**
* Previously visited location (optional).
* @param NSString* locationName - previously visited location name
*/
[params setSource: locationName];
/**
* State/result of the location passing (required).
* @param BOOL isCompleted - true if location is successfuly passed
*/
[params setIsSuccess: isCompleted];
/**
* Time spent in the location (optional).
* In case the parameter is not specified by the developer, it will be automatically calculated
* as the date difference between startProgressionEvent and endProgressionEvent method calls.
* @param NSNumber* duration - time in seconds
*/
[params setDuration: duration];
/**
* User spendings within the location passing (optional).
* @ param NSDictionary* spent - user spendings. Key length max. 24 symbols.
*/
[params setSpent: spent];
/**
* User earnings within the location passing (optional).
* @param NSDictionary* earned - user earnings. Key length max. 24 symbols.
*/
[params setEarned: earned];
The user can be only in one location at the same time. When moving to another location (including embedded), the previous location must be completed. Information on locations, the passing of which was not completed by calling endProgressionEvent method during the game session (the call of endProgressionEvent method is not integrated; user unloaded the application from the device memory; there was an application crash), do not fall in the statistics.
Let’s look at the example of event integration for a match3 game with a location map:
// Player comes to the third location on the map "Village" while following the game map.
// Create a parameters object
LocationEventParams* params = [[LocationEventParams alloc] init];
// Specify the known location parameters:
// Passing on the first level of difficulty.
[params setDifficulty:1];
// Before entering this location gamer passed the third location on the map “Village” (optional).
[params setSource: @"Vilage step 02"];
//The location passing starts (required).
[DevToDev startProgressionEvent:@"Vilage step 03" withParameters:params];
// ... Player passing the location.
// Player finishes passing of the third location on the map “Village”
// The location is passed successfully (required).
[params setIsSuccess: YES];
// The passing took 189 seconds.
[params setDuration:@189];
// Location is passed for 54 turns. While the passing gamer used boost and bought extra 5 turns.
NSDictionary* spent = @{
@"Turns" : @54,
@"Boost Bomb" : @1,
@"Extra 5 Turns" : @1
};
[params setSpent: spent];
// Gamer finished the passing with 3 stars and gained 5 coins and 1200 score.
NSDictionary* earned = @{
@"Stars" : @3,
@"Score" : @1200,
@"Coins" : @5
};
[params setEarned: earned];
// The location passing is over (required).
[DevToDev endProgressionEvent: @"Vilage step 03" withParameters: params];
Method startProgressionEvent when enetring the location
/**
* The method have to be used when entering the location.
* @param String locationName - the name of location user entered.
* @param LocationEventParams params - instance of location parameters class
*/
DevToDev.startProgressionEvent(locationName, params);
Method endProgressionEvent when exiting (no matter if completed or not) the location
/**
* The method have to be used when the location passing is over.
* @param String locationName - the name of location user left.
* @param LocationEventParams params - instance of location parameters class
*/
DevToDev.endProgressionEvent(locationName, params);
LocationEventParams class methods:
/**
* Location level of difficulty (optional).
* @param int difficultyLevel - level of difficulty
*/
setDifficulty(difficultyLevel);
/**
* Previously visited location (optional).
* @param String locationName - previously visited location name
*/
setSource(locationName);
/**
* State/result of the location passing (required).
* @param boolean isCompleted - true if location is successfuly passed
*/
setSuccessfulCompletion(isCompleted);
/**
* Time spent in the location (optional).
* In case the parameter is not specified by the developer, it will be automatically calculated
* as the date difference between startProgressionEvent and endProgressionEvent method calls.
* @param int duration - time in seconds
*/
setDuration(duration);
/**
* User spendings within the location passing (optional).
* @ param HashMap<String, Number> spent - user spendings. Key length max. 24 symbols.
*/
setSpent(spent);
/**
* User earnings within the location passing (optional).
* @param HashMap<String, Number> earned - user earnings. Key length max. 24 symbols.
*/
setEarned(earned);
The user can be only in one location at the same time. When moving to another location (including embedded), the previous location must be completed. Information on locations, the passing of which was not completed by calling endProgressionEvent method during the game session (the call of endProgressionEvent method is not integrated; user unloaded the application from the device memory; there was an application crash) do not fall in the statistics.
Let’s analyse the example of event integration on match3 game with location map:
// Player comes to the third location on the map "Village" while following the game map.
// Create a parameters object
LocationEventParams params = new LocationEventParams();
// Specify the known location parameters:
// Passing on the first level of difficulty.
params.setDifficulty(1);
// Before entering this location gamer passed the third location on the map “Village” (optional).
params.setSource("Vilage step 02");
//The location passing starts (required).
DevToDev.startProgressionEvent("Vilage step 03", params);
// ... Player passing the location.
// Player finishes passing of the third location on the map “Village”
// The location is passed successfully (required).
params.setSuccessfulCompletion(true);
// The passing took 189 seconds.
params.setDuration(189);
// Location is passed for 54 turns. While the passing gamer used boost and bought extra 5 turns.
HashMap<String, Number> spent = new HashMap<String, Number>();
spent.put("Turns", 54);
spent.put("Boost Bomb", 1);
spent.put("Extra 5 Turns", 1);
params.setSpent(spent);
// Gamer finished the passing with 3 stars and gained 5 coins and 1200 score.
HashMap<String, Number> earned = new HashMap<String, Number>();
earned.put("Stars", 3);
earned.put("Score", 1200 );
earned.put("Coins", 5);
params.setEarned(earned);
// The location passing is over (required).
DevToDev.endProgressionEvent("Vilage step 03", params);
Method StartProgressionEvent when enetring the location
/**
* <param name="locationName">The name of location user entered</param>
* <param name="locationParams">Instance of location parameters class</param>
*/
DevToDev.SDK.StartProgressionEvent(string locationName, LocationEventParams locationParams);
Method EndProgressionEvent when exiting (no matter if completed or not) the location
/**
* <param name="locationName">The name of location user entered</param>
* <param name="locationParams">Instance of location parameters class</param>
*/
DevToDev.SDK.EndProgressionEvent(string locationName, LocationEventParams locationParams);
LocationEventParams class methods:
/**
* Location level of difficulty (optional).
* <param name="difficultyLevel">Level of difficulty</param>
*/
SetDifficulty(int difficultyLevel);
/**
* Previously visited location (optional).
* <param name="locationName">Previously visited location name</param>
*/
SetSource(string locationName);
/**
* State/result of the location passing (required).
* <param name="isCompleted">True if location is successfuly passed</param>
*/
SetSuccessfulCompletion(bool isCompleted);
/**
* Time spent in the location (optional).
* In case the parameter is not specified by the developer, it will be automatically calculated
* as the date difference between StartProgressionEvent and EndProgressionEvent method calls.
* <param name="duration">Time in seconds</param>
*/
SetDuration(long duration);
/**
* User spendings within the location passing (optional). Key (currency name) length max. 24 symbols.
* <param name="spent">User spendings</param>
*/
SetSpent(Dictionary<string, int> spent);
/**
* User earnings within the location passing (optional). Key (currency name) length max. 24 symbols.
* <param name="earned">User earnings</param>
*/
SetEarned(Dictionary<string, int> earned);
The user can be only in one location at the same time. When moving to another location (including embedded), the previous location must be completed. Information on locations, the passing of which was not completed by calling EndProgressionEvent method during the game session (the call of EndProgressionEvent method is not integrated; user unloaded the application from the device memory; there was an application crash) do not fall in the statistics.
Let’s analyse the example of event integration on match3 game with location map:
// Player comes to the third location on the map "Village" while following the game map.
// Create a parameters object
LocationEventParams locationParams = new LocationEventParams();
// Specify the known location parameters:
// Passing on the first level of difficulty.
locationParams.SetDifficulty(1);
// Before entering this location gamer passed the third location on the map “Village” (optional).
locationParams.SetSource("Vilage step 02");
//The location passing starts (required).
DevToDev.SDK.StartProgressionEvent("Vilage step 03", locationParams);
// ... Player passing the location.
// Player finishes passing of the third location on the map “Village”
LocationEventParams locationParams = new LocationEventParams();
// The location is passed successfully (required).
locationParams.SetSuccessfulCompletion(true);
// The passing took 189 seconds.
locationParams.SetDuration(189);
// Location is passed for 54 turns. While the passing gamer used boost and bought extra 5 turns.
Dictionary<string, int> spent = new Dictionary<string, int>();
spent["Turns"] = 54;
spent["Boost Bomb"] = 1;
spent["Extra 5 Turns"] = 1;
locationParams.SetSpent(spent);
// Gamer finished the passing with 3 stars and gained 5 coins and 1200 score.
Dictionary<string, int> earned = new Dictionary<string, int>();
earned["Stars"] = 3;
earned["Score"] = 1200;
earned["Coins"] = 5;
locationParams.SetEarned(earned);
// The location passing is over (required).
DevToDev.SDK.EndProgressionEvent("Vilage step 03", locationParams);
Method startProgressionEvent when enetring the location
/**
* The method have to be used when entering the location.
* @param {string} locationName - the name of location user entered.
* @param {Object} startParams - location parameters object
*/
devtodev.startProgressionEvent(locationName, startParams);
Method endProgressionEvent when exiting (no matter if completed or not) the location
/**
* The method have to be used when the location passing is over.
* @param {string} locationName - the name of location user left.
* @param {Object} endParams - location parameters object
*/
devtodev.endProgressionEvent(locationName, endParams);
Location parameters object contains:
var params = {
// Previously visited location (optional).
"source" : "locationSource",
// Location level of difficulty (optional).
"difficulty" : 1,
// Time spent in the location (optional).
// In case the parameter is not specified by the developer, it will be automatically calculated
// as the date difference between startProgressionEvent and endProgressionEvent method calls.
"duration" : 80,
// State/result of the location passing (required).
"success" : true,
//User spendings within the location passing (optional).
"spent" : [
{
"currency": "currency 1 name", // Currency name length max. 24 symbols.
"amount": 1 // objects with amount value less than 1 are ignored
},
{
"currency": "currency 2 name",
"amount": 2
}
],
// User earnings within the location passing (optional).
"earned" : [
{
"currency": "currency 1 name",
"amount": 1 // objects with amount value less than 1 are ignored
},
{
"currency": "currency 2 name",
"amount": 2
}
]
};
The user can be only in one location at the same time. When moving to another location (including embedded), the previous location must be completed. Information on locations, the passing of which was not completed by calling endProgressionEvent method during the game session (the call of endProgressionEvent method is not integrated; user unloaded the application from the device memory; there was an application crash) do not fall in the statistics.
Let’s analyse the example of event integration on match3 game with location map:
// Player comes to the third location on the map "Village" while following the game map.
// Create a parameters object
var params = {};
// Specify the known location parameters:
// Passing on the first level of difficulty.
params["difficulty"] = 1;
// Before entering this location gamer passed the third location on the map “Village” (optional).
params["source"] = "Vilage step 02";
//The location passing starts (required).
devtodev.startProgressionEvent("Vilage step 03", params);
// ... Player passing the location.
// Player finishes passing of the third location on the map “Village”
// The location is passed successfully (required).
params["success"] = true;
// The passing took 189 seconds.
params["duration"] = 189;
// Location is passed for 54 turns. While the passing gamer used boost and bought extra 5 turns.
params["spent"] = [
{
"currency": "Turns",
"amount": 54
},
{
"currency": "Boost Bomb",
"amount": 1
},
{
"currency": "Extra 5 Turns",
"amount": 1
}
];
// Gamer finished the passing with 3 stars and gained 5 coins and 1200 score.
params["earned"] = [
{
"currency": "Stars",
"amount": 3
},
{
"currency": "Score",
"amount": 1200
},
{
"currency": "Coins",
"amount": 5
}
];
// The location passing is over (required).
devtodev.endProgressionEvent("Vilage step 03", params);
Method StartProgressionEvent when enetring the location
/// <param name="eventId"> The name of location user entered </param>
/// <param name="eventParams"> Instance of progression parameters class </param>
DevToDev.Analytics.StartProgressionEvent(string eventId, ProgressionEventParams eventParams);
Method EndProgressionEvent when exiting (no matter if completed or not) the location
/// <param name="eventId"> The name of location user left </param>
/// <param name="eventParams"> Instance of progression parameters class </param>
DevToDev.Analytics.EndProgressionEvent(string eventId, ProgressionEventParams eventParams);
ProgressionEventParams class methods:
/// <summary> Location level of difficulty (optional). </summary>
/// <param name="difficultyLevel"> Level of difficulty </param>
SetDifficulty(int difficultyLevel);
/// <summary> Previously visited location (optional). </summary>
/// <param name="locationName"> Previously visited location name </param>
SetSource(string locationName);
/// <summary> State/result of the location passing (required). </summary>
/// <param name="isCompleted"> True if location is successfuly passed </param>
SetSuccessfulCompletion(bool isCompleted);
/// <summary>Time spent in the location (optional).
/// <para>In case the parameter is not specified by the developer, it will be automatically calculated
/// as the date difference between StartProgressionEvent and EndProgressionEvent method calls.</para>
/// </summary>
/// <param name="duration"> Time in seconds </param>
SetDuration(long duration);
/// <summary> User spendings within the location passing (optional). Dictionary key max.length is 24 symbols.</summary>
/// <param name="spent"> User spendings </param>
SetSpent(Dictionary<string, int> spent);
/// <summary> User earnings within the location passing (optional). </summary>
/// <param name="earned"> User earnings </param>
SetEarned(Dictionary<string, int> earned);
The user can be only in one location at the same time. When moving to another location (including embedded), the previous location must be completed. Information on locations, the passing of which was not completed by calling EndProgressionEvent method during the game session (the call of EndProgressionEvent method is not integrated; user unloaded the application from the device memory; there was an application crash) do not fall in the statistics.
Let’s analyse the example of event integration on match3 game with location map:
// Player comes to the third location on the map "Village" while following the game map.
// Create a parameters object
ProgressionEventParams locationParams = new ProgressionEventParams();
// Specify the known location parameters:
// Passing on the first level of difficulty.
locationParams.SetDifficulty(1);
// Before entering this location gamer passed the third location on the map “Village” (optional).
locationParams.SetSource("Vilage step 02");
//The location passing starts (required).
DevToDev.Analytics.StartProgressionEvent("Vilage step 03", locationParams);
// ... Player passing the location.
// Player finishes passing of the third location on the map “Village”
// Create a parameters object
ProgressionEventParams locationParams = new ProgressionEventParams();
// The location is passed successfully (required).
locationParams.SetSuccessfulCompletion(true);
// The passing took 189 seconds.
locationParams.SetDuration(189);
// Location is passed for 54 turns. While the passing gamer used boost and bought extra 5 turns.
Dictionary<string, int> spent = new Dictionary<string, int>();
spent["Turns"] = 54;
spent["Boost Bomb"] = 1;
spent["Extra 5 Turns"] = 1;
locationParams.SetSpent(spent);
// Gamer finished the passing with 3 stars and gained 5 coins and 1200 score.
Dictionary<string, int> earned = new Dictionary<string, int>();
earned["Stars"] = 3;
earned["Score"] = 1200;
earned["Coins"] = 5;
locationParams.SetEarned(earned);
// The location passing is over (required).
DevToDev.Analytics.EndProgressionEvent("Vilage step 03", locationParams);
Method startProgressionEvent when enetring the location
/**
* The method have to be used when entering the location.
* @param String locationName - the name of location user entered.
* @param LocationEventParams params - instance of location parameters class
*/
[DevToDev startProgressionEvent: locationName withParameters: params];
Method endProgressionEvent when exiting (no matter if completed or not) the location
/**
* The method have to be used when the location passing is over.
* @param String locationName - the name of location user left.
* @param LocationEventParams params - instance of location parameters class
*/
[DevToDev endProgressionEvent: locationName withParameters: params];
LocationEventParams class methods:
/**
* Location level of difficulty (optional).
* @param NSInteger difficultyLevel - level of difficulty
*/
[params setDifficulty: difficultyLevel];
/**
* Previously visited location (optional).
* @param NSString* locationName - previously visited location name
*/
[params setSource: locationName];
/**
* State/result of the location passing (required).
* @param BOOL isCompleted - true if location is successfuly passed
*/
[params setIsSuccess: isCompleted];
/**
* Time spent in the location (optional).
* In case the parameter is not specified by the developer, it will be automatically calculated
* as the date difference between startProgressionEvent and endProgressionEvent method calls.
* @param NSNumber* duration - time in seconds
*/
[params setDuration: duration];
/**
* User spendings within the location passing (optional).
* @ param NSDictionary* spent - user spendings. Key max.length is 24 symbols.
*/
[params setSpent: spent];
/**
* User earnings within the location passing (optional).
* @param NSDictionary* earned - user earnings. Key max.length is 24 symbols.
*/
[params setEarned: earned];
The user can be only in one location at the same time. When moving to another location (including embedded), the previous location must be completed. Information on locations, the passing of which was not completed by calling endProgressionEvent method during the game session (the call of endProgressionEvent method is not integrated; user unloaded the application from the device memory; there was an application crash) do not fall in the statistics.
Let’s analyse the example of event integration on match3 game with location map:
// Player comes to the third location on the map "Village" while following the game map.
// Create a parameters object
LocationEventParams* params = [[LocationEventParams alloc] init];
// Specify the known location parameters:
// Passing on the first level of difficulty.
[params setDifficulty:1];
// Before entering this location gamer passed the third location on the map “Village” (optional).
[params setSource: @"Vilage step 02"];
//The location passing starts (required).
[DevToDev startProgressionEvent:@"Vilage step 03" withParameters:params];
// ... Player passing the location.
// Player finishes passing of the third location on the map “Village”
// The location is passed successfully (required).
[params setIsSuccess: YES];
// The passing took 189 seconds.
[params setDuration:@189];
// Location is passed for 54 turns. While the passing gamer used boost and bought extra 5 turns.
NSDictionary* spent = @{
@"Turns" : @54,
@"Boost Bomb" : @1,
@"Extra 5 Turns" : @1
};
[params setSpent: spent];
// Gamer finished the passing with 3 stars and gained 5 coins and 1200 score.
NSDictionary* earned = @{
@"Stars" : @3,
@"Score" : @1200,
@"Coins" : @5
};
[params setEarned: earned];
// The location passing is over (required).
[DevToDev endProgressionEvent: @"Vilage step 03" withParameters: params];
Method StartProgressionEvent when enetring the location
/**
* The method have to be used when entering the location.
* @param locationName - the name of location user entered.
* @param params - instance of location parameters class
*/
DevToDev.StartProgressionEvent(locationName:String, params:LocationEventParams);
Method EndProgressionEvent when exiting (no matter if completed or not) the location
/**
* The method have to be used when the location passing is over.
* @param locationName - the name of location user left.
* @param params - instance of location parameters class
*/
DevToDev.EndProgressionEvent(locationName:String, params:LocationEventParams);
LocationEventParams class methods:
/**
* Location level of difficulty (optional).
* @param difficultyLevel - level of difficulty
*/
SetDifficulty(difficultyLevel:int);
/**
* Previously visited location (optional).
* @param locationName - previously visited location name
*/
SetSource(locationName:String);
/**
* State/result of the location passing (required).
* @param isCompleted - true if location is successfuly passed
*/
SetSuccessfulCompletion(isCompleted:Boolean);
/**
* Time spent in the location (optional).
* In case the parameter is not specified by the developer, it will be automatically calculated
* as the date difference between StartProgressionEvent and EndProgressionEvent method calls.
* @param duration - time in seconds
*/
SetDuration(duration:int);
/**
* User spendings within the location passing (optional).
* @ param spent - user spendings. Key max.length is 24 symbols.
*/
SetSpent(spent:Dictionary);
/**
* User earnings within the location passing (optional).
* @param earned - user earnings. Key max.length is 24 symbols.
*/
SetEarned(earned:Dictionary);
The user can be only in one location at the same time. When moving to another location (including embedded), the previous location must be completed. Information on locations, the passing of which was not completed by calling EndProgressionEvent method during the game session (the call of EndProgressionEvent method is not integrated; user unloaded the application from the device memory; there was an application crash) do not fall in the statistics.
Let’s analyse the example of event integration on match3 game with location map:
// Player comes to the third location on the map "Village" while following the game map.
// Create a parameters object
var params:LocationEventParams = new LocationEventParams();
// Specify the known location parameters:
// Passing on the first level of difficulty.
params.SetDifficulty(1);
// Before entering this location gamer passed the third location on the map “Village” (optional).
params.SetSource("Vilage step 02");
//The location passing starts (required).
DevToDev.StartProgressionEvent("Vilage step 03", params);
// ... Player passing the location.
// Player finishes passing of the third location on the map “Village”
var params:LocationEventParams = new LocationEventParams();
// The location is passed successfully (required).
params.SetSuccessfulCompletion(true);
// The passing took 189 seconds.
params.SetDuration(189);
// Location is passed for 54 turns. While the passing gamer used boost and bought extra 5 turns.
var spent:Dictionary = new Dictionary();
spent["Turns"] = 54;
spent["Boost Bomb"] = 1;
spent["Extra 5 Turns"] = 1;
params.SetSpent(spent);
// Gamer finished the passing with 3 stars and gained 5 coins and 1200 score.
var earned:Dictionary = new Dictionary();
earned["Stars"] = 3;
earned["Score"] = 1200;
earned["Coins"] = 5;
params.SetEarned(earned);
// The location passing is over (required).
DevToDev.EndProgressionEvent("Vilage step 03", params);
Method StartProgressionEvent when enetring the location
Code
// The method have to be used when entering the location.
// FString locationName - the name of location user entered.
// TArray<FAnalyticsEventAttr> Attributes - location parameters
UDevToDevBlueprintFunctionLibrary::StartProgressionEvent(const FString& locationName,
const TArray<FAnalyticsEventAttr>& Attributes);
Method EndProgressionEvent when exiting (no matter if completed or not) the locationBlueprint
Location parameters
Code
// The method have to be used when the location passing is over.
// FString locationName - the name of location user left.
// TArray<FAnalyticsEventAttr> Attributes - location parameters
// TArray<FAnalyticsEventAttr> Earned - user earnings within the location passing (optional)
// TArray<FAnalyticsEventAttr> Spent - user spendings within the location passing (optional).
UDevToDevBlueprintFunctionLibrary::EndProgressionEvent(const FString& locationName,
const TArray<FAnalyticsEventAttr>& Attributes,
const TArray<FAnalyticsEventAttr>& Earned,
const TArray<FAnalyticsEventAttr>& Spent);
The user can be only in one location at the same time. When moving to another location (including embedded), the previous location must be completed. Information on locations, the passing of which was not completed by calling endProgressionEvent method during the game session (the call of endProgressionEvent method is not integrated; user unloaded the application from the device memory; there was an application crash) do not fall in the statistics.
Let’s analyse the example of event integration on match3 game with location map:
Blueprint
Player comes to the third location on the map “Village” while following the game map. Passing on the first level of difficulty. Before entering this location gamer passed the third location on the map “City”. .. Player passing the location. Player finishes passing of the third location on the map “Village”. The location is passed successfully. The passing took 389 seconds. Gamer finished the passing with 3 stars and gained 70 coins. While the passing gamer used boost and bought extra 5 turns.
Field
Type
Description
Step
int32
The latest successfully completed tutorial step
Field
Type
Description
Level
int32
level reached by the player
Field
Type
Description
Level
int32
level reached by the player
Field
Type
Description
Game Currency Type
FString
Currency name (max. 24 symbols)
Game Currency Amount
int32
The amount an account has been credited with.
accrualType
Enum
Can take one of following values: "Earned" or "Purchased"
Field
type
Description
Transaction Id
FString
Unique transaction ID
In AppPrice
float
Product price (in user's currency)
In App Name
FString
Product name
In App Currency ISOCode
FString
Transaction currency (ISO 4217 format)
Field
Type
Description
Item Id
FString
Unique purchase Id or name (max. 32 symbols)
Item Quantity
int32
Count of purchased goods
Field
Type
Description
purchaseType
FString
Purchase type or group (max. 96 symbols)
purchasePrice
int32
Cost of purchased goods (total cost -if several goods were purchased)
purchaseCurrency
FString
Currency name (max. 24 symbols)
Field
Type
Description
Event Name
FString
Custom event name
Field
Type
Description
locationName
FString
The name of location user entered
Attributes
TArray<FAnalyticsEventAttr>
Location parameters
Field
Type
Description
locationName
FString
The name of location user left
Attributes
TArray<FAnalyticsEventAttr>
Location parameters
Earned
TArray<FAnalyticsEventAttr>
User earnings within the location passing (optional). Key max. length is 24 symbols.
Spent
TArray<FAnalyticsEventAttr>
User spendings within the location passing (optional). Key max. length is 24 symbols.
Key
Type
Description
success
bool
State/result of the location passing (required).
source
FString
Previously visited location (optional).
difficulty
int32
Location level of difficulty (optional).
duration
int32
Time spent in the location (optional). In case the parameter is not specified by the developer, it will be automatically сalculated as the date difference between Start Progression Event and End Progression Event method calls.