Compare commits
3 Commits
timestamp-
...
timestamp-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b761b35ce | ||
|
|
5206f8781e | ||
|
|
2c0a5bfe65 |
@@ -1,8 +1,8 @@
|
||||
#Created by .winboll/winboll_app_build.gradle
|
||||
#Wed May 07 10:48:11 HKT 2025
|
||||
stageCount=9
|
||||
#Wed May 07 10:56:24 HKT 2025
|
||||
stageCount=10
|
||||
libraryProject=
|
||||
baseVersion=15.0
|
||||
publishVersion=15.0.8
|
||||
publishVersion=15.0.9
|
||||
buildCount=0
|
||||
baseBetaVersion=15.0.9
|
||||
baseBetaVersion=15.0.10
|
||||
|
||||
@@ -25,8 +25,8 @@ public class AppConfigsModel extends BaseBean {
|
||||
|
||||
public AppConfigsModel() {
|
||||
this.isEnableService = false;
|
||||
this.timeStampFormatString = "yyyy-MM-dd HH:mm:ss";
|
||||
this.timeStampCopyFormatString = "yyyy_MM_dd-HH_mm_ss";
|
||||
this.timeStampFormatString = "yyyy-MM-dd HH:mm:ss SSS";
|
||||
this.timeStampCopyFormatString = "yyyy_MM_dd-HH_mm_ss-SSS";
|
||||
}
|
||||
|
||||
public void setTimeStampCopyFormatString(String timeStampCopyFormatString) {
|
||||
|
||||
@@ -22,12 +22,12 @@ public class AppConfigsUtil {
|
||||
|
||||
AppConfigsUtil(Context context) {
|
||||
this.mContext = context;
|
||||
loadAppConfigs();
|
||||
}
|
||||
|
||||
public synchronized static AppConfigsUtil getInstance(Context context){
|
||||
if(_AppConfigsUtil == null) {
|
||||
_AppConfigsUtil = new AppConfigsUtil(context);
|
||||
_AppConfigsUtil.loadAppConfigs();
|
||||
}
|
||||
return _AppConfigsUtil;
|
||||
}
|
||||
@@ -42,8 +42,8 @@ public class AppConfigsUtil {
|
||||
if (appConfigsModel != null) {
|
||||
mAppConfigsModel = appConfigsModel;
|
||||
} else {
|
||||
saveAppConfigs(new AppConfigsModel());
|
||||
_AppConfigsUtil = this;
|
||||
mAppConfigsModel = new AppConfigsModel();
|
||||
saveAppConfigs(mAppConfigsModel);
|
||||
}
|
||||
return mAppConfigsModel;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user