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.
This commit is contained in:
Greyson Parrelli
2024-07-22 13:29:49 -04:00
committed by Nicholas Tinsley
parent ab03a627da
commit 82c3265be5

View File

@@ -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):