mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-22 01:37:34 +01:00
fixes unknown files being ignored when -r is used
This commit is contained in:
parent
65b188ae96
commit
0736aac013
1
CHANGES
1
CHANGES
@ -35,6 +35,7 @@ v2.0.0 (TBA)
|
|||||||
-Fixed (issue #584) - Fixed horrible spacing, aligned for 4 spaces.
|
-Fixed (issue #584) - Fixed horrible spacing, aligned for 4 spaces.
|
||||||
-Fixed (issue #196) - Fixed style crash due to malformed styles.
|
-Fixed (issue #196) - Fixed style crash due to malformed styles.
|
||||||
-Fixed (issue #603) - Fixed unknown files prefixed with common name from being ignored.
|
-Fixed (issue #603) - Fixed unknown files prefixed with common name from being ignored.
|
||||||
|
-Fixed (issue #606) - Fixed unknown files being ignored when -r is used.
|
||||||
-Fixed issue with non-URI standard characters in apk name (Thanks rover12421)
|
-Fixed issue with non-URI standard characters in apk name (Thanks rover12421)
|
||||||
-Added output to list Apktool version to help debugging.
|
-Added output to list Apktool version to help debugging.
|
||||||
-Updated known bytes for configurations to 38 (from addition of layout direction)
|
-Updated known bytes for configurations to 38 (from addition of layout direction)
|
||||||
|
@ -276,9 +276,8 @@ public class ApkDecoder {
|
|||||||
putPackageInfo(meta);
|
putPackageInfo(meta);
|
||||||
putVersionInfo(meta);
|
putVersionInfo(meta);
|
||||||
putCompressionInfo(meta);
|
putCompressionInfo(meta);
|
||||||
putUnknownInfo(meta);
|
|
||||||
//meta.put("packageId", getResTable().getPackageInfo().get("cur_package_id"));
|
|
||||||
}
|
}
|
||||||
|
putUnknownInfo(meta);
|
||||||
|
|
||||||
mAndrolib.writeMetaFile(mOutDir, meta);
|
mAndrolib.writeMetaFile(mOutDir, meta);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user