Browse Source

1.修改累计得分错误问题

王鹏鹏 2 years ago
parent
commit
7d76e2d801

+ 0 - 3
game/src/main/java/com/yingyangfly/game/introduction/GameIntroductionActivity.kt

@@ -4,7 +4,6 @@ import android.annotation.SuppressLint
 import android.content.Intent
 import android.os.Bundle
 import android.text.TextUtils
-import android.util.Log
 import android.view.MotionEvent
 import android.view.View
 import com.alibaba.android.arouter.facade.annotation.Route
@@ -85,7 +84,6 @@ class GameIntroductionActivity :
 
     override fun initData() {
         binding {
-            Log.e("wpp", videoUrl)
             val model = SuperPlayerModel()
             model.appId = AccountConfig.TENCENT_APPID // 配置 AppId
             model.url = videoUrl // 配置您的播放视频 url
@@ -194,7 +192,6 @@ class GameIntroductionActivity :
                                     "&difficultyRate=" + gameBean!!.gameDifficultyRate + "&totalTime=" +
                                     gameBean!!.gameTotalTime + "&totalScore=" + gameBean!!.gameTotalScore +
                                     "&playClass=" + playClass
-                        Log.e("wpp", url)
                         ARouter.getInstance().build(RouterUrlCommon.playGame)
                             .withString("gameCode", gameCode)
                             .withString("playClass", playClass)

+ 0 - 2
tuichat/src/main/java/com/tencent/qcloud/tuikit/tuichat/presenter/C2CChatPresenter.java

@@ -1,7 +1,6 @@
 package com.tencent.qcloud.tuikit.tuichat.presenter;
 
 import android.text.TextUtils;
-import android.util.Log;
 import android.util.Pair;
 
 import com.google.gson.Gson;
@@ -59,7 +58,6 @@ public class C2CChatPresenter extends ChatPresenter {
 
             @Override
             public void onRecvNewMessage(TUIMessageBean message) {
-                Log.e("wpp", new Gson().toJson(message));
                 if (chatInfo == null || !TextUtils.equals(message.getUserId(), chatInfo.getId())) {
                     TUIChatLog.i(TAG, "receive a new message , not belong to current chat.");
                 } else {