mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-12 23:49:25 +01:00
Merge branch 'Furniel-master'
This commit is contained in:
commit
a062adcc0c
1
CHANGES
1
CHANGES
@ -59,6 +59,7 @@ v2.0.0 (TBA)
|
||||
-Fixed (issue #744) - Fixed warnings of "Cleaning up unclosed ZipFile..."
|
||||
-Fixed (issue #757) - Download gradle binaries over https
|
||||
-Fixed (issue #402) - Fix issues when running user has no access to $HOME.
|
||||
-Fixed issue with attempting to decode .spi files as 9 patches (Thanks Furniel)
|
||||
-Fixed issue with APKs with multiple dex files.
|
||||
-Fixed issue with using Apktool without smali/baksmali for ApktoolProperties (Thanks teprrr)
|
||||
-Fixed issue with non-URI standard characters in apk name (Thanks rover12421)
|
||||
|
@ -71,8 +71,8 @@ public class ResFileDecoder {
|
||||
outFileName = outResName + ".r.9" + ext;
|
||||
}
|
||||
|
||||
// check for samsung qmg
|
||||
if (inFileName.toLowerCase().endsWith(".qmg")) {
|
||||
// check for samsung qmg & spi
|
||||
if (inFileName.toLowerCase().endsWith(".qmg") || inFileName.toLowerCase().endsWith(".spi")) {
|
||||
copyRaw(inDir, outDir, outFileName);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user