mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-12 13:57:46 +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 resourcesAreCompressed = false;
|
||||
public boolean useAapt2 = false;
|
||||
|
||||
@Deprecated
|
||||
public Collection<String> doNotCompress;
|
||||
public Collection<String> noCompressAssets;
|
||||
|
||||
public String frameworkFolderLocation = null;
|
||||
public String frameworkTag = null;
|
||||
|
@ -37,7 +37,10 @@ public class MetaInfo {
|
||||
public boolean sharedLibrary;
|
||||
public boolean sparseResources;
|
||||
public Map<String, String> unknownFiles;
|
||||
|
||||
@Deprecated
|
||||
public Collection<String> doNotCompress;
|
||||
public Collection<String> noCompressAssets;
|
||||
|
||||
private static Yaml getYaml() {
|
||||
DumperOptions options = new DumperOptions();
|
||||
|
Loading…
Reference in New Issue
Block a user