1:修改营业时间,结束时间秒更改为00
2:修改在退出登录的时候,不在清除本地缓存数据
This commit is contained in:
@@ -799,8 +799,9 @@ public class CommonAppContext extends MultiDexApplication implements Application
|
||||
SpUtil.putToken("");
|
||||
|
||||
// piaoPingManager.unsubscribe();
|
||||
FileUtils.deleteAllInDir(getCacheDir());
|
||||
FileUtils.deleteAllInDir(getExternalCacheDir());
|
||||
// TODO: 2026/1/22 清楚本地缓存,但是在清楚的时候,会把所有的图片缓存就清除了,这是不对的,今天进行了修改,注释掉
|
||||
// FileUtils.deleteAllInDir(getCacheDir());
|
||||
// FileUtils.deleteAllInDir(getExternalCacheDir());
|
||||
AgoraManager.getInstance().destroy();
|
||||
// 每次启动应用时重置状态
|
||||
SpUtil.setBooleanValue("youth_model_shown", false);
|
||||
|
||||
@@ -507,7 +507,7 @@ public class RoomSettingFragment extends BaseMvpDialogFragment<RoomSettingPresen
|
||||
Calendar endCalendar = Calendar.getInstance();
|
||||
endCalendar.setTime(endDate);
|
||||
// 将秒设置为59
|
||||
endCalendar.set(Calendar.SECOND, 59);
|
||||
endCalendar.set(Calendar.SECOND, 0);
|
||||
|
||||
// 格式化时间
|
||||
String startTime = sdf.format(startCalendar.getTime());
|
||||
|
||||
Reference in New Issue
Block a user