Merge "Allow sign_target_files_apks.py to create zip64 signed TF.zip."

am: 9baf675285

Change-Id: Ic7a9f8735ded10d36d2a97d7b3118bc0ae6f6456
This commit is contained in:
Tao Bao 2017-06-14 05:44:56 +00:00 committed by android-build-merger
commit 7d5f8ec704

View file

@ -634,7 +634,9 @@ def main(argv):
sys.exit(1)
input_zip = zipfile.ZipFile(args[0], "r")
output_zip = zipfile.ZipFile(args[1], "w")
output_zip = zipfile.ZipFile(args[1], "w",
compression=zipfile.ZIP_DEFLATED,
allowZip64=True)
misc_info = common.LoadInfoDict(input_zip)