调整调试信息

This commit is contained in:
ZhanGSKen 2025-03-30 04:08:09 +08:00
parent d51ebbd550
commit 619fd39a92
6 changed files with 10 additions and 10 deletions

View File

@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle
#Sat Mar 29 19:57:40 GMT 2025
#Sat Mar 29 20:07:25 GMT 2025
stageCount=2
libraryProject=libaes
baseVersion=15.2
publishVersion=15.2.1
buildCount=63
buildCount=71
baseBetaVersion=15.2.2

View File

@ -17,7 +17,7 @@ public class App extends GlobalApplication {
public void onCreate() {
super.onCreate();
ToastUtils.init(this);
ToastUtils.show("App onCreate");
//ToastUtils.show("App onCreate");
}
}

View File

@ -57,7 +57,7 @@ public class MainActivity extends DrawerFragmentActivity implements IWinBollActi
}
showFragment(mTestAButtonFragment);
//setSubtitle(TAG);
ToastUtils.show("onCreate");
//ToastUtils.show("onCreate");
}
@Override

View File

@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle
#Sat Mar 29 19:57:40 GMT 2025
#Sat Mar 29 20:07:25 GMT 2025
stageCount=2
libraryProject=libaes
baseVersion=15.2
publishVersion=15.2.1
buildCount=63
buildCount=71
baseBetaVersion=15.2.2

View File

@ -52,7 +52,7 @@ public class WinBollClientService extends Service implements IWinBollClientServi
@Override
public void onCreate() {
ToastUtils.show("onCreate");
//ToastUtils.show("onCreate");
super.onCreate();
mWinBollClientThread = null;
mWinBollClientServiceBean = WinBollClientServiceBean.loadWinBollClientServiceBean(this);
@ -126,7 +126,7 @@ public class WinBollClientService extends Service implements IWinBollClientServi
@Override
public void onDestroy() {
super.onDestroy();
ToastUtils.show("onDestroy");
//ToastUtils.show("onDestroy");
}
@Override
@ -156,7 +156,7 @@ public class WinBollClientService extends Service implements IWinBollClientServi
class WinBollClientThread extends Thread {
@Override
public void run() {
ToastUtils.show("WinBollClientThread");
//ToastUtils.show("WinBollClientThread");
super.run();
syncWinBollClientThreadStatus();
if (mIsEnableService) {

View File

@ -122,7 +122,7 @@ public class WinBollServiceStatusView extends LinearLayout {
mConnectionStatus = getConnectionStatus();
//mIsConnected = false;
//mWinBollServerHostConnectionStatus = WinBollServerHostConnectionStatus.DISCONNECTED;
ToastUtils.show("initView()");
//ToastUtils.show("initView()");
mViewOnClickListener = new View.OnClickListener(){
@Override