Merge "Allow sign_target_files_apks.py to create zip64 signed TF.zip." am: 9baf675285

am: 7d5f8ec704

Change-Id: I23d08c4a7b3311afafa857e4efb5a982f8cf0f25
This commit is contained in:
Tao Bao 2017-06-14 05:49:58 +00:00 committed by android-build-merger
commit 5edb6ee6fd
1 changed files with 3 additions and 1 deletions

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)