Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_frameworks_base
/
8c98628524b27f26b51ce8df09b6471b1978b43c
/
.
/
api
/
gen_combined_removed_dex.sh
blob: 2860e2ed17c254fe63093e0794c4aaa8cbb65445 [
file
] [
log
] [
blame
]
#!/bin/bash
metalava_path
=
"$1"
tmp_dir
=
"$2"
shift
2
# Convert each removed.txt to the "dex format" equivalent, and print all output.
for
f
in
"$@"
;
do
"$metalava_path"
signature
-
to
-
dex
"$f"
--
out
"${tmp_dir}/tmp"
cat
"${tmp_dir}/tmp"
done