initLocal() in zoneinfo_android.go is hard-coded to UTC:
|
func initLocal() { |
|
// TODO(elias.naur): getprop persist.sys.timezone |
|
localLoc = *UTC |
|
} |
func initLocal() {
// TODO(elias.naur): getprop persist.sys.timezone
localLoc = *UTC
}
x/mobile currently uses a hack to set time.Local for gomobile android apps (golang/mobile@730f563), but that predates the availability of tzdata on android (80b31c0).
cc @eliasnaur @crawshaw #13581 #10857
initLocal() in zoneinfo_android.go is hard-coded to UTC:
go/src/time/zoneinfo_android.go
Lines 43 to 46 in bc495c5
x/mobile currently uses a hack to set time.Local for gomobile android apps (golang/mobile@730f563), but that predates the availability of tzdata on android (80b31c0).
cc @eliasnaur @crawshaw #13581 #10857