mirror of
https://github.com/revanced/Apktool.git
synced 2025-06-12 05:07:41 +02:00
fix: only mark as sparse if intended application (#3299)
This commit is contained in:
@ -54,6 +54,7 @@ public class SparseFlagTest extends BaseTest {
|
||||
|
||||
LOGGER.info("Decoding sparse.apk...");
|
||||
Config config = Config.getDefaultConfig();
|
||||
config.frameworkTag = "issue-3298";
|
||||
|
||||
ApkDecoder apkDecoder = new ApkDecoder(config, testApk);
|
||||
ApkInfo apkInfo = apkDecoder.decode(sTestNewDir);
|
||||
@ -70,6 +71,7 @@ public class SparseFlagTest extends BaseTest {
|
||||
|
||||
LOGGER.info("Decoding not-sparse.apk...");
|
||||
Config config = Config.getDefaultConfig();
|
||||
config.frameworkTag = "issue-3298";
|
||||
|
||||
ApkDecoder apkDecoder = new ApkDecoder(config, testApk);
|
||||
ApkInfo apkInfo = apkDecoder.decode(sTestNewDir);
|
||||
|
Reference in New Issue
Block a user