platform_build/tools/zipalign
Dan Willemsen 3c2c064c87 Remove changing uids/timestamps from zip/jar files
Pass -X to zip so that Unix UID/GID and extra timestamps aren't
saved into the zip files.

Add a new option to zipalign, -t, to replace all timestamps with static
timestamps (2008 Jan 1 00:00:00). Use this for all non-APK zip files.
APK zip timestamps are set based on the certificate date in SignApk.

Bug: 24201956
Change-Id: Ifb619fc499ba9d99fc624f2acd5f8de36d78ef8e
2015-10-29 11:57:16 -07:00
..
Android.mk Add LOCAL_MODULE_HOST_OS 2015-09-03 16:40:51 -07:00
README.txt Remove changing uids/timestamps from zip/jar files 2015-10-29 11:57:16 -07:00
ZipAlign.cpp Remove changing uids/timestamps from zip/jar files 2015-10-29 11:57:16 -07:00
ZipEntry.cpp Remove changing uids/timestamps from zip/jar files 2015-10-29 11:57:16 -07:00
ZipEntry.h Remove changing uids/timestamps from zip/jar files 2015-10-29 11:57:16 -07:00
ZipFile.cpp Remove changing uids/timestamps from zip/jar files 2015-10-29 11:57:16 -07:00
ZipFile.h Remove changing uids/timestamps from zip/jar files 2015-10-29 11:57:16 -07:00

README.txt

zipalign -- zip archive alignment tool

usage: zipalign [-f] [-v] <align> infile.zip outfile.zip
       zipalign -c [-v] <align> infile.zip

  -c : check alignment only (does not modify file)
  -f : overwrite existing outfile.zip
  -p : page align stored shared object files
  -t : remove dynamic timestamps
  -v : verbose output
  <align> is in bytes, e.g. "4" provides 32-bit alignment
  infile.zip is an existing Zip archive
  outfile.zip will be created


The purpose of zipalign is to ensure that all uncompressed data starts
with a particular alignment relative to the start of the file.  This
allows those portions to be accessed directly with mmap() even if they
contain binary data with alignment restrictions.

Some data needs to be word-aligned for easy access, others might benefit
from being page-aligned.  The adjustment is made by altering the size of
the "extra" field in the zip Local File Header sections.  Existing data
in the "extra" fields may be altered by this process.

Compressed data isn't very useful until it's uncompressed, so there's no
need to adjust its alignment.

Alterations to the archive, such as renaming or deleting entries, will
potentially disrupt the alignment of the modified entry and all later
entries.  Files added to an "aligned" archive will not be aligned.

By default, zipalign will not overwrite an existing output file.  With the
"-f" flag, an existing file will be overwritten.

You can use the "-c" flag to test whether a zip archive is properly aligned.

The "-p" flag aligns any file with a ".so" extension, and which is stored
uncompressed in the zip archive, to a 4096-byte page boundary.  This
facilitates directly loading shared libraries from inside a zip archive.

The "-t" flag removes all timestamps that could change from the archive.