how do i change timezone using adb

前端 未结 6 685
我寻月下人不归
我寻月下人不归 2020-12-05 19:30

I want to change the timezone using adb shell command.

I went through some posts which allow changing it in linux, but they are not valid for android.

6条回答
  •  情深已故
    2020-12-05 20:13

    This works with ADB

    Get current global time zone:

    adb shell settings get global time_zone              
    

    Set a time zone:

    adb shell settings put global time_zone Europe/Madrid
    

    Time zones list:

    https://en.wikipedia.org/wiki/List_of_tz_database_time_zones

提交回复
热议问题