From 82c3265be5172fdf72d6ec39ad7345cb4066d3ba Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Mon, 22 Jul 2024 13:29:49 -0400 Subject: [PATCH] Remove now-unnecessary exclusion from apkdiff.py. Used to need it because baselineprof was non-deterministic, but google has since fixed this in newer versions of AGP. --- reproducible-builds/apkdiff/apkdiff.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/reproducible-builds/apkdiff/apkdiff.py b/reproducible-builds/apkdiff/apkdiff.py index 515b48cc36..e3e408eb26 100755 --- a/reproducible-builds/apkdiff/apkdiff.py +++ b/reproducible-builds/apkdiff/apkdiff.py @@ -11,9 +11,7 @@ class ApkDiff: "META-INF/CERTIFIC.SF", "META-INF/CERTIFIC.RSA", "META-INF/TEXTSECU.RSA", - "META-INF/TEXTSECU.SF", - # Dynamically-generated file for AOT compilation. Doesn't affect app code. - "assets/dexopt/baseline.profm" + "META-INF/TEXTSECU.SF" ] def compare(self, firstApk, secondApk):