Skip to content

Commit

Permalink
[APK] Ensure that the ID for base APK always remains the same
Browse files Browse the repository at this point in the history
Signed-off-by: Muntashir Al-Islam <[email protected]>
  • Loading branch information
MuntashirAkon committed Sep 7, 2023
1 parent 61a51f5 commit cc9304a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ public class Entry implements AutoCloseable, LocalizedString {

Entry(@NonNull File source, @NonNull ByteBuffer manifest) {
mSource = Objects.requireNonNull(source);
id = source.getAbsolutePath();
id = "base-apk"; // A safe ID since others ends with `.apk`
name = "Base.apk";
type = APK_BASE;
mRequired = true;
Expand Down

0 comments on commit cc9304a

Please sign in to comment.