Change default jar time to match ziptime

Ziptime uses Jan 01 2008, use the same in soong_zip and merge_zips.

Test: manual
Change-Id: Ie79a2e7864a5ed5a74833caec0a50c25a451859e
This commit is contained in:
Colin Cross 2017-10-04 17:02:23 -07:00
parent 60e38b613f
commit bddcf13555

View file

@ -31,7 +31,7 @@ const (
ModuleInfoClass = "module-info.class"
)
var DefaultTime = time.Date(2009, 1, 1, 0, 0, 0, 0, time.UTC)
var DefaultTime = time.Date(2008, 1, 1, 0, 0, 0, 0, time.UTC)
var MetaDirExtra = [2]byte{0xca, 0xfe}