Ejemplo n.º 1
0
        public static void LogPurchase(string productId, string currencyCode, decimal price, int quantity, Dictionary <string, object> properties)
        {
            var javaPrice = new AndroidJavaObject("java.math.BigDecimal", price.ToString());
            AndroidJavaObject appboyProperties = ParsePropertiesToAppboyProperties(properties);

            Appboy.Call("logPurchase", productId, currencyCode, javaPrice, quantity, appboyProperties);
        }
Ejemplo n.º 2
0
        public static void LogPurchase(string productId, string currencyCode, decimal price, int quantity)
        {
            object[]          args = new object[] { price.ToString() };
            AndroidJavaObject obj2 = new AndroidJavaObject("java.math.BigDecimal", args);

            object[] objArray2 = new object[] { productId, currencyCode, obj2, quantity };
            Appboy.Call <bool>("logPurchase", objArray2);
        }
Ejemplo n.º 3
0
 private static AndroidJavaObject GetCurrentUser()
 {
     return(Appboy.Call <AndroidJavaObject>("getCurrentUser"));
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Requests a refresh of Braze Geofences for the specified GPS coordinate.
 /// </summary>
 /// <param name='latitude'>
 /// A valid GPS latitude in range (-90, 90).
 /// </param>
 /// <param name='longitude'>
 /// A valid GPS longitude in range (-180, 180).
 /// </param>
 /// </summary>
 public static void RequestGeofences(decimal latitude, decimal longitude)
 {
     Appboy.Call("requestGeofences", latitude, longitude);
 }
Ejemplo n.º 5
0
 public static void LogFeedDisplayed()
 {
     Appboy.Call("logFeedDisplayed");
 }
Ejemplo n.º 6
0
 public static void RequestFeedRefresh()
 {
     Appboy.Call("requestFeedRefresh");
 }
Ejemplo n.º 7
0
 public static void ChangeUser(string userId)
 {
     Appboy.Call("changeUser", userId);
 }
Ejemplo n.º 8
0
        public static void LogPurchase(string productId, string currencyCode, decimal price, int quantity)
        {
            var javaPrice = new AndroidJavaObject("java.math.BigDecimal", price.ToString());

            Appboy.Call("logPurchase", productId, currencyCode, javaPrice, quantity);
        }
Ejemplo n.º 9
0
 public static void RequestFeedRefreshFromCache()
 {
     Appboy.Call("requestFeedRefreshFromCache", new object[0]);
 }
Ejemplo n.º 10
0
 public static void RequestFeedRefresh()
 {
     Appboy.Call("requestFeedRefresh", new object[0]);
 }
Ejemplo n.º 11
0
 public static void RequestContentCardsRefreshFromCache()
 {
     Appboy.Call("requestContentCardsRefresh", true);
 }
Ejemplo n.º 12
0
 public static void RequestContentCardsRefresh()
 {
     Appboy.Call("requestContentCardsRefresh", false);
 }
Ejemplo n.º 13
0
 public static void LogContentCardsDisplayed()
 {
     Appboy.Call("logContentCardsDisplayed");
 }
Ejemplo n.º 14
0
        public static void LogContentCardClicked(string contentCardString)
        {
            var contentCard = Appboy.Call <AndroidJavaObject>("deserializeContentCard", contentCardString);

            contentCard.Call <bool>("logClick");
        }
Ejemplo n.º 15
0
 public static void RequestImmediateDataFlush()
 {
     Appboy.Call("requestImmediateDataFlush");
 }
Ejemplo n.º 16
0
 public static void LogCustomEvent(string eventName)
 {
     Appboy.Call("logCustomEvent", eventName);
 }
Ejemplo n.º 17
0
        /// <summary>
        /// Logs a custom event for the user with the given properties.
        /// </summary>
        /// <param name='eventName'>
        /// The name of the custom event.
        /// </param>
        /// <param name='properties'>
        /// A properties dictionary.  Values that are int/string/double/bool/DateTime will be passed to Android
        /// and mapped to java types.  All other values will be passed as strings.
        /// </param>
        public static void LogCustomEvent(string eventName, Dictionary <string, object> properties)
        {
            AndroidJavaObject appboyProperties = ParsePropertiesToAppboyProperties(properties);

            Appboy.Call("logCustomEvent", eventName, appboyProperties);
        }
Ejemplo n.º 18
0
 public static void RequestSlideup()
 {
     Appboy.Call("requestInAppMessageRefresh", new object[0]);
 }
Ejemplo n.º 19
0
 public static void ChangeUser(string userId)
 {
     object[] args = new object[] { userId };
     Appboy.Call <AndroidJavaObject>("changeUser", args);
 }
Ejemplo n.º 20
0
 public static void SubmitFeedback(string replyToEmail, string message, bool isReportingABug)
 {
     object[] args = new object[] { replyToEmail, message, isReportingABug };
     Appboy.Call <bool>("submitFeedback", args);
 }
Ejemplo n.º 21
0
 public static void RegisterAppboyPushMessages(string registrationId)
 {
     Appboy.Call("registerAppboyPushMessages", new object[] { registrationId });
 }
Ejemplo n.º 22
0
 public static void LogCustomEvent(string eventName)
 {
     object[] args = new object[] { eventName };
     Appboy.Call <bool>("logCustomEvent", args);
 }
Ejemplo n.º 23
0
 public static void RequestFeedRefreshFromCache()
 {
     Appboy.Call("requestFeedRefreshFromCache");
 }
Ejemplo n.º 24
0
 public static void LogFeedDisplayed()
 {
     Appboy.Call <bool>("logFeedDisplayed", new object[0]);
 }
Ejemplo n.º 25
0
 public static string GetInstallTrackingId()
 {
     return(Appboy.Call <string>("getInstallTrackingId"));
 }
Ejemplo n.º 26
0
        public static void LogContentCardDismissed(string contentCardString)
        {
            var contentCard = Appboy.Call <AndroidJavaObject>("deserializeContentCard", contentCardString);

            contentCard.Call <bool>("setIsDismissed", true);
        }