diff options
author | 2023-10-26 11:18:56 +0100 | |
---|---|---|
committer | 2023-10-26 12:59:21 +0100 | |
commit | 4c4a9c3eebf99c47e77c2f8eaea487ec2745007a (patch) | |
tree | 31a245aee3768a66407560ca8e474ee133b4c796 | |
parent | 04e59b174f08920d7b39982b8a4b13d2385928ea (diff) |
Replace `--dex-api` with `signature-to-dex` instead
Bug: 307737035
Test: m combined-removed-dex
# Check before and after to make sure there are no differences
Change-Id: I51e774e6a340d310b96c0291b04f66b4737aebda
-rwxr-xr-x | api/gen_combined_removed_dex.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/gen_combined_removed_dex.sh b/api/gen_combined_removed_dex.sh index 71f366a6aae2..e0153f7c1091 100755 --- a/api/gen_combined_removed_dex.sh +++ b/api/gen_combined_removed_dex.sh @@ -6,6 +6,6 @@ shift 2 # Convert each removed.txt to the "dex format" equivalent, and print all output. for f in "$@"; do - "$metalava_path" "$f" --dex-api "${tmp_dir}/tmp" + "$metalava_path" signature-to-dex "$f" "${tmp_dir}/tmp" cat "${tmp_dir}/tmp" done |