Cannot run adb shell “date `date +%m%d%H%M%Y.%S`”

后端 未结 5 1630
余生分开走
余生分开走 2021-02-03 22:58

I have a warning when running React Native on an Android device:

Debugger and device times had drifted by more than 60s. Please correct this by running

5条回答
  •  孤独总比滥情好
    2021-02-03 23:32

    If your phone can run adb as root you can use the following commands:

    >>> adb root
    restarting adbd as root
    
    >>> adb shell "date `date +%m%d%H%M%Y.%S`"       
    Mon Aug 26 21:04:24 +0430 201
    

提交回复
热议问题