Compare commits

...

5 Commits

Author SHA1 Message Date
ZhanGSKen
5ee9da1982 <timestamp>APK 15.0.15 release Publish. 2025-05-07 14:05:50 +08:00
ZhanGSKen
f59f7676b7 调整通知栏显示信息 2025-05-07 14:05:12 +08:00
ZhanGSKen
19b8251182 <timestamp>APK 15.0.14 release Publish. 2025-05-07 13:59:51 +08:00
ZhanGSKen
4dadb15c0c <timestamp>APK 15.0.13 release Publish. 2025-05-07 13:59:38 +08:00
ZhanGSKen
21b5487513 设置时间戳初始数据 2025-05-07 13:58:56 +08:00
3 changed files with 6 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle
#Wed May 07 13:48:06 HKT 2025
stageCount=13
#Wed May 07 14:05:50 HKT 2025
stageCount=16
libraryProject=
baseVersion=15.0
publishVersion=15.0.12
publishVersion=15.0.15
buildCount=0
baseBetaVersion=15.0.13
baseBetaVersion=15.0.16

View File

@@ -209,7 +209,7 @@ public class MainService extends Service {
case MSG_UPDATE_TIMESTAMP:
{
String szTimeStampShowString = TimeStampUtil.getInstance(MainService.this).getTimeStampShowString();
mNotificationHelper.sendForegroundNotification(MainService.this, "时间戳:\n" + szTimeStampShowString + "\n已拷贝到剪贴板");
mNotificationHelper.sendForegroundNotification(MainService.this, "时间戳:\n" + szTimeStampShowString + "\n已截取");
LogUtils.d(TAG, "Hello, World! " + szTimeStampShowString);
break;

View File

@@ -22,6 +22,7 @@ public class TimeStampUtil {
TimeStampUtil(Context context) {
mContext = context;
mTimeStamp = System.currentTimeMillis();
}
public synchronized static TimeStampUtil getInstance(Context context) {