Exemplo n.º 1
0
 /// <summary>
 /// Allows Flurry to set the SKAdNetwork conversion value for you.
 /// The final conversion value is a decimal number between 0-63.
 /// The conversion value is calculated from a 6 bit binary number.
 /// The first two bits represent days of user retention from 0-3 days
 /// The last four bits represent a true false state indicating if the user has completed the post install event.
 /// </summary>
 /// <param name="flurryEvent">Valid events are NoEvent, Registration, LogIn, Subscription, and InAppPurchase.</param>
 public static void UpdateConversionValueWithEvent(FlurrySDK.Flurry.SKAdNetworkEvent flurryEvent)
 {
     if (flurryAgent != null)
     {
         flurryAgent.UpdateConversionValueWithEvent(flurryEvent);
     }
 }
Exemplo n.º 2
0
 public override void UpdateConversionValueWithEvent(FlurrySDK.Flurry.SKAdNetworkEvent flurryEvent)
 {
     flurryUpdateConversionValueWithEvent((int)flurryEvent);
 }
Exemplo n.º 3
0
 public override void UpdateConversionValueWithEvent(FlurrySDK.Flurry.SKAdNetworkEvent flurryEvent)
 {
     Debug.Log("UpdateConversionValueWithEvent is for iOS only.");
 }
Exemplo n.º 4
0
 public abstract void UpdateConversionValueWithEvent(FlurrySDK.Flurry.SKAdNetworkEvent flurryEvent);