diff options
author | 2023-07-14 16:23:39 -0700 | |
---|---|---|
committer | 2023-08-29 11:18:44 -0700 | |
commit | 6158528e152304f1259e31ff343358ff0f50c0e4 (patch) | |
tree | 12db2727afc7948f1cc810b7c9d9c5a1ae8daf2d /java/hiddenapi.go | |
parent | 4e6c42d417c41f91f60333dad0974d7bfb7f5ae2 (diff) |
Only allow setting presigned without preprocessed on targetSdk < 30
When targetSdk is >= 30, the system verifies that you use a valid
signature V2+ certificate. Uncompressing ndk/dex files or aligning
the zip file will break a signature V2, so these apks should really
just set preprocessed: true.
Fixes: 185811447
Test: Presubmits
Change-Id: Id89c42bcd5b5daa6eda1716bff4023423298036b
Diffstat (limited to 'java/hiddenapi.go')
-rw-r--r-- | java/hiddenapi.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/hiddenapi.go b/java/hiddenapi.go index 4d08b8307..fe3fe7b61 100644 --- a/java/hiddenapi.go +++ b/java/hiddenapi.go @@ -305,7 +305,7 @@ func hiddenAPIEncodeDex(ctx android.ModuleContext, dexInput, flagsCSV android.Pa }) if uncompressDex { - TransformZipAlign(ctx, output, encodeRuleOutput) + TransformZipAlign(ctx, output, encodeRuleOutput, nil) } return output |