Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc82ba55 authored by sophiez's avatar sophiez
Browse files

Java used-by API list generation

Update the java used by script to fix the xml format when dexdeps processing resource only APKs

Test: TARGET_BUILD_APPS=com.android.adbd m dist apps_only
Change-Id: I61a58d7c739e74a571e97166a7c9b4091e6f8da0
parent f793ba06
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -32,7 +32,7 @@ genUsedByList() {
  touch "$out"
  touch "$out"
  echo "<externals>" >> "$out"
  echo "<externals>" >> "$out"
  for x in "$@"; do
  for x in "$@"; do
    "$dexdeps" "$x" >> "$out" || true
    "$dexdeps" "$x" >> "$out" || echo "</external>" >> "$out"
  done
  done
  echo "</externals>" >> "$out"
  echo "</externals>" >> "$out"
}
}