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

Commit 450eafd3 authored by Spandan Das's avatar Spandan Das Committed by Automerger Merge Worker
Browse files

Merge "Unzip apk in $(genDir) instead of inside source tree" am: 9e137eaf...

Merge "Unzip apk in $(genDir) instead of inside source tree" am: 9e137eaf am: e065bfe1 am: 939e9d36

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1740173

Change-Id: Ie61fcbb26e88463a58843e7ad181fd129791f4bf
parents c808e43c 939e9d36
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -30,8 +30,8 @@ genrule {
    name: "LargeResourcesUncompressed",
    srcs: [":LargeResourcesCompressed"],
    out: ["LargeResourcesUncompressed.apk"],
    cmd: "cp $(in) $(out) && unzip -o $(out) resources.arsc"
         + " && zip $(out) resources.arsc"
    cmd: "cp $(in) $(out) && unzip -o $(out) resources.arsc -d $(genDir)" +
        " && zip -j $(out) $(genDir)/resources.arsc",
}

java_library {