mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-06 01:55:53 +01:00
options: deprecate "doNotCompress", introduce "noCompressAssets"
This commit is contained in:
parent
a84e3c56fd
commit
cb6b6dfda8
@ -28,7 +28,10 @@ public class ApkOptions {
|
|||||||
public boolean isFramework = false;
|
public boolean isFramework = false;
|
||||||
public boolean resourcesAreCompressed = false;
|
public boolean resourcesAreCompressed = false;
|
||||||
public boolean useAapt2 = false;
|
public boolean useAapt2 = false;
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
public Collection<String> doNotCompress;
|
public Collection<String> doNotCompress;
|
||||||
|
public Collection<String> noCompressAssets;
|
||||||
|
|
||||||
public String frameworkFolderLocation = null;
|
public String frameworkFolderLocation = null;
|
||||||
public String frameworkTag = null;
|
public String frameworkTag = null;
|
||||||
|
@ -37,7 +37,10 @@ public class MetaInfo {
|
|||||||
public boolean sharedLibrary;
|
public boolean sharedLibrary;
|
||||||
public boolean sparseResources;
|
public boolean sparseResources;
|
||||||
public Map<String, String> unknownFiles;
|
public Map<String, String> unknownFiles;
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
public Collection<String> doNotCompress;
|
public Collection<String> doNotCompress;
|
||||||
|
public Collection<String> noCompressAssets;
|
||||||
|
|
||||||
private static Yaml getYaml() {
|
private static Yaml getYaml() {
|
||||||
DumperOptions options = new DumperOptions();
|
DumperOptions options = new DumperOptions();
|
||||||
|
Loading…
Reference in New Issue
Block a user