Beispiel #1
0
 public static void SetVerboseLog(bool enabled)
 {
     GA_Wrapper.SetVerboseLog(enabled);
 }
Beispiel #2
0
 public static void SetFacebookId(string facebookId)
 {
     GA_Wrapper.SetFacebookId(facebookId);
 }
Beispiel #3
0
 public static void SetInfoLog(bool enabled)
 {
     GA_Wrapper.SetInfoLog(enabled);
 }
Beispiel #4
0
 public static void SetBirthYear(int birthYear)
 {
     GA_Wrapper.SetBirthYear(birthYear);
 }
Beispiel #5
0
 public static void SetCustomDimension03(string customDimension)
 {
     GA_Wrapper.SetCustomDimension03(customDimension);
 }
 public static void NewEvent(string currency, int amount, string itemType, string itemId, string cartType)
 {
     GA_Wrapper.AddBusinessEvent(currency, amount, itemType, itemId, cartType);
 }
 public static void NewEvent(string currency, int amount, string itemType, string itemId, string cartType, IDictionary <string, object> fields)
 {
     GA_Wrapper.AddBusinessEvent(currency, amount, itemType, itemId, cartType, fields);
 }
Beispiel #8
0
 /// <summary>
 /// Creates a new event
 /// </summary>
 /// <param name="adAction">Action of ad (for example loaded, show).</param>
 /// <param name="adType">Type of ad (for video, interstitial).</param>
 /// <param name="adSdkName">Name of ad SDK.</param>
 /// <param name="adPlacement">Placement of ad or identifier of the ad in the app</param>
 public static void NewEvent(GAAdAction adAction, GAAdType adType, string adSdkName, string adPlacement)
 {
     GA_Wrapper.AddAdEvent(adAction, adType, adSdkName, adPlacement);
 }
 public static void NewEventGooglePlay(string currency, int amount, string itemType, string itemId, string cartType, string receipt, string signature)
 {
     GA_Wrapper.AddBusinessEventWithReceipt(currency, amount, itemType, itemId, cartType, receipt, "google_play", signature);
 }
Beispiel #10
0
 /// <summary>
 /// Creates a new event
 /// </summary>
 /// <param name="adAction">Action of ad (for example loaded, show).</param>
 /// <param name="adType">Type of ad (for video, interstitial).</param>
 /// <param name="adSdkName">Name of ad SDK.</param>
 /// <param name="adPlacement">Placement of ad or identifier of the ad in the app</param>
 /// <param name="duration">Duration of ad video</param>
 public static void NewEvent(GAAdAction adAction, GAAdType adType, string adSdkName, string adPlacement, long duration)
 {
     GA_Wrapper.AddAdEventWithDuration(adAction, adType, adSdkName, adPlacement, duration);
 }
Beispiel #11
0
 /// <summary>
 /// Creates a new event
 /// </summary>
 /// <param name="adAction">Action of ad (for example loaded, show).</param>
 /// <param name="adType">Type of ad (for video, interstitial).</param>
 /// <param name="adSdkName">Name of ad SDK.</param>
 /// <param name="adPlacement">Placement of ad or identifier of the ad in the app</param>
 /// <param name="noAdReason">Error reason for no ad available</param>
 public static void NewEvent(GAAdAction adAction, GAAdType adType, string adSdkName, string adPlacement, GAAdError noAdReason)
 {
     GA_Wrapper.AddAdEventWithReason(adAction, adType, adSdkName, adPlacement, noAdReason);
 }
 public static void NewEvent(GAResourceFlowType flowType, string currency, float amount, string itemType, string itemId, IDictionary <string, object> fields)
 {
     GA_Wrapper.AddResourceEvent(flowType, currency, amount, itemType, itemId, fields);
 }
 private static void CreateNewEvent(GAErrorSeverity severity, string message, IDictionary <string, object> fields)
 {
     GA_Wrapper.AddErrorEvent(severity, message, fields);
 }
Beispiel #14
0
 public static void NewEventGooglePlay(string currency, int amount, string itemType, string itemId, string cartType, string receipt, string signature, IDictionary <string, object> fields, bool mergeFields)
 {
     GA_Wrapper.AddBusinessEventWithReceipt(currency, amount, itemType, itemId, cartType, receipt, "google_play", signature, fields, mergeFields);
 }
Beispiel #15
0
 /// <summary>
 /// Creates a new event
 /// </summary>
 /// <param name="adAction">Action of ad (for example loaded, show).</param>
 /// <param name="adType">Type of ad (for video, interstitial).</param>
 /// <param name="adSdkName">Name of ad SDK.</param>
 /// <param name="adPlacement">Placement of ad or identifier of the ad in the app</param>
 /// <param name="fields">Custom fields.</param>
 public static void NewEvent(GAAdAction adAction, GAAdType adType, string adSdkName, string adPlacement, IDictionary <string, object> fields, bool mergeFields = false)
 {
     GA_Wrapper.AddAdEvent(adAction, adType, adSdkName, adPlacement, fields, mergeFields);
 }
 public static void NewEvent(GAResourceFlowType flowType, string currency, float amount, string itemType, string itemId)
 {
     GA_Wrapper.AddResourceEvent(flowType, currency, amount, itemType, itemId);
 }