Prechádzať zdrojové kódy

v1.0.0开发:媒体支付打点单位修改为美元

#Suyghur 3 rokov pred
rodič
commit
f6875ba8f2

+ 2 - 2
library_core/src/main/java/cn/yyxx/eyuangame/core/linking/channel/LinkingAdjustImpl.kt

@@ -140,7 +140,7 @@ class LinkingAdjustImpl : IEventObserver {
             if (!MMKVUtils.instance.eventKV.decodeBool("adjust_first_purchase")) {
                 if (JsonUtils.hasJsonKey(this, "first_purchase")) {
                     val event = AdjustEvent(this.getString("first_purchase"))
-                    event.setRevenue(amount.toDouble(), "USD")
+                    event.setRevenue(amount.toDouble() / 100, "USD")
                     Adjust.trackEvent(event)
                     Logger.d("adjust log first charge success")
                     MMKVUtils.instance.eventKV.encode("adjust_first_purchase", true)
@@ -149,7 +149,7 @@ class LinkingAdjustImpl : IEventObserver {
 
             if (JsonUtils.hasJsonKey(this, "ecommerce_purchase")) {
                 val event = AdjustEvent(this.getString("ecommerce_purchase"))
-                event.setRevenue(amount.toDouble(), "USD")
+                event.setRevenue(amount.toDouble() / 100, "USD")
                 Adjust.trackEvent(event)
                 Logger.d("adjust log charge success")
             }

+ 2 - 2
library_core/src/main/java/cn/yyxx/eyuangame/core/linking/channel/LinkingFacebookImpl.kt

@@ -101,12 +101,12 @@ class LinkingFacebookImpl : IEventObserver {
         }
 
         if (!MMKVUtils.instance.eventKV.decodeBool("facebook_first_purchase")) {
-            fbLogger.logEvent("first_purchase", amount.toDouble())
+            fbLogger.logEvent("first_purchase", amount.toDouble() / 100)
             Logger.d("facebook log first charge success")
             MMKVUtils.instance.eventKV.encode("facebook_first_purchase", true)
         }
 
-        fbLogger.logPurchase(BigDecimal.valueOf(amount.toDouble()), Currency.getInstance("USD"))
+        fbLogger.logPurchase(BigDecimal.valueOf(amount.toDouble() / 100), Currency.getInstance("USD"))
         Logger.d("facebook log charge success")
     }
 

+ 2 - 2
library_core/src/main/java/cn/yyxx/eyuangame/core/linking/channel/LinkingFirebaseImpl.kt

@@ -93,14 +93,14 @@ class LinkingFirebaseImpl : IEventObserver {
 
         if (!MMKVUtils.instance.eventKV.decodeBool("firebase_first_purchase")) {
             Firebase.analytics.logEvent("first_purchase") {
-                param(FirebaseAnalytics.Param.PRICE, amount.toString())
+                param(FirebaseAnalytics.Param.PRICE, (amount.toDouble() / 100).toString())
             }
             Logger.d("firebase log first charge success")
             MMKVUtils.instance.eventKV.encode("firebase_first_purchase", true)
         }
 
         Firebase.analytics.logEvent("ecommerce_purchase") {
-            param(FirebaseAnalytics.Param.PRICE, amount.toString())
+            param(FirebaseAnalytics.Param.PRICE, (amount.toDouble() / 100).toString())
         }
         Logger.d("firebase log charge success")