Android6 RK 修改系统默认时间

1、很多人只说需要改TIME时间久可以了,但是修改后会无效,需要把设置时间方法放在startOtherServices()后面执行,这样才会生效。

默认都是1970年如果想默认其它年份的话,把那个年份减去1970,然后用工具换算出多少秒就行,然后乘以1000 或者直接像我这样加三个0也行。

+++ b/frameworks/base/services/java/com/android/server/SystemServer.java
@@ -109,7 +109,8 @@ public final class SystemServer {
 
     // The earliest supported time.  We pick one day into 1970, to
     // give any timezone code room without going into negative time.
-    private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000;
+                                                                                                               
+    private static final long EARLIEST_SUPPORTED_TIME = 1674577508000L; //2023年1月
 
     /*
      * Implementation class names. TODO: Move them to a codegen class or load
@@ -180,10 +181,11 @@ public final class SystemServer {
         // APIs crash dealing with negative numbers, notably
         // java.io.File#setLastModified, so instead we fake it and
         // hope that time from cell towers or NTP fixes it shortly.
-        if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) {
-            Slog.w(TAG, "System clock is before 1970; setting to 1970.");
-            SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME);
-        }
+                Slog.w(TAG, "bll----System.currentTimeMillis()="+System.currentTimeMillis()+",EARLIEST_SUPPORTED_TIME="+EARLIEST_SUPPORTED_TIME);
+       // if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) {
+         //   Slog.w(TAG, "System clock is before 1970; setting to 1970.");
+          //  SystemClock.setCurrentTimeMillis(1482899065689L);
+       // }
 
         // If the system has "persist.sys.language" and friends set, replace them with
         // "persist.sys.locale". Note that the default locale at this point is calculated
@@ -201,6 +203,7 @@ public final class SystemServer {
             SystemProperties.set("persist.sys.country", "");
             SystemProperties.set("persist.sys.localevar", "");
         }
+       
 
         // Here we go!
         Slog.i(TAG, "Entered the Android system server!");
@@ -270,6 +273,11 @@ public final class SystemServer {
             startBootstrapServices();
             startCoreServices();
             startOtherServices();
+                        Slog.w(TAG, "bll----BBBBBBB=EARLIEST_SUPPORTED_TIME="+EARLIEST_SUPPORTED_TIME);
+                            // if (System.currentTimeMillis() < EARLIEST_SUPPORTED_TIME) {
+            Slog.w(TAG, "System clock is before 1970; setting to 1970.");
+            SystemClock.setCurrentTimeMillis(EARLIEST_SUPPORTED_TIME);
+       // }
         } 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值