Exemple #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);
        }
Exemple #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);
        }
Exemple #3
0
 private static AndroidJavaObject GetCurrentUser()
 {
     return(Appboy.Call <AndroidJavaObject>("getCurrentUser"));
 }
 /// <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);
 }
Exemple #5
0
 public static void LogFeedDisplayed()
 {
     Appboy.Call("logFeedDisplayed");
 }
Exemple #6
0
 public static void RequestFeedRefresh()
 {
     Appboy.Call("requestFeedRefresh");
 }
Exemple #7
0
 public static void ChangeUser(string userId)
 {
     Appboy.Call("changeUser", userId);
 }
Exemple #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);
        }
Exemple #9
0
 public static void RequestFeedRefreshFromCache()
 {
     Appboy.Call("requestFeedRefreshFromCache", new object[0]);
 }
Exemple #10
0
 public static void RequestFeedRefresh()
 {
     Appboy.Call("requestFeedRefresh", new object[0]);
 }
 public static void RequestContentCardsRefreshFromCache()
 {
     Appboy.Call("requestContentCardsRefresh", true);
 }
 public static void RequestContentCardsRefresh()
 {
     Appboy.Call("requestContentCardsRefresh", false);
 }
 public static void LogContentCardsDisplayed()
 {
     Appboy.Call("logContentCardsDisplayed");
 }
        public static void LogContentCardClicked(string contentCardString)
        {
            var contentCard = Appboy.Call <AndroidJavaObject>("deserializeContentCard", contentCardString);

            contentCard.Call <bool>("logClick");
        }
 public static void RequestImmediateDataFlush()
 {
     Appboy.Call("requestImmediateDataFlush");
 }
Exemple #16
0
 public static void LogCustomEvent(string eventName)
 {
     Appboy.Call("logCustomEvent", eventName);
 }
Exemple #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);
        }
Exemple #18
0
 public static void RequestSlideup()
 {
     Appboy.Call("requestInAppMessageRefresh", new object[0]);
 }
Exemple #19
0
 public static void ChangeUser(string userId)
 {
     object[] args = new object[] { userId };
     Appboy.Call <AndroidJavaObject>("changeUser", args);
 }
Exemple #20
0
 public static void SubmitFeedback(string replyToEmail, string message, bool isReportingABug)
 {
     object[] args = new object[] { replyToEmail, message, isReportingABug };
     Appboy.Call <bool>("submitFeedback", args);
 }
Exemple #21
0
 public static void RegisterAppboyPushMessages(string registrationId)
 {
     Appboy.Call("registerAppboyPushMessages", new object[] { registrationId });
 }
Exemple #22
0
 public static void LogCustomEvent(string eventName)
 {
     object[] args = new object[] { eventName };
     Appboy.Call <bool>("logCustomEvent", args);
 }
Exemple #23
0
 public static void RequestFeedRefreshFromCache()
 {
     Appboy.Call("requestFeedRefreshFromCache");
 }
Exemple #24
0
 public static void LogFeedDisplayed()
 {
     Appboy.Call <bool>("logFeedDisplayed", new object[0]);
 }
Exemple #25
0
 public static string GetInstallTrackingId()
 {
     return(Appboy.Call <string>("getInstallTrackingId"));
 }
Exemple #26
0
        public static void LogContentCardDismissed(string contentCardString)
        {
            var contentCard = Appboy.Call <AndroidJavaObject>("deserializeContentCard", contentCardString);

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