Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how do i change timezone using adb

Tags:

android

adb

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.

like image 415
Rohan Avatar asked Nov 09 '11 09:11

Rohan


2 Answers

adb shell service call alarm 3 s16 America/Phoenix, which will be effective immediately.

"setprop with persist.sys.timezone" only works after reboot.

like image 45
Yong Avatar answered Oct 07 '22 15:10

Yong


For the list of tzdata values I go to http://en.wikipedia.org/wiki/List_of_tz_database_time_zones

To set the timezone use setprop persist.sys.timezone <TZ> command:

setprop persist.sys.timezone "America/Chicago"
like image 160
Alex P. Avatar answered Oct 07 '22 16:10

Alex P.