mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-07 05:06:59 +01:00
fix: Applications with implicit sdk versioning lose that information
- This is a temporary hack to keep application building, but will not work due to missing nearly all resources. - refs: #1761
This commit is contained in:
parent
7360fd1dd8
commit
25a164dd10
@ -691,6 +691,10 @@ public class Androlib {
|
||||
if (inputFile.isDirectory()) {
|
||||
continue;
|
||||
}
|
||||
if (! inputFile.isFile()) {
|
||||
LOGGER.warning(String.format("File could not be located: %s", normalizedPath));
|
||||
continue;
|
||||
}
|
||||
|
||||
LOGGER.fine(String.format("Copying uncompressed asset: %s", normalizedPath));
|
||||
ZipEntry newEntry = getStoredZipEntry(normalizedPath, inputFile);
|
||||
|
Loading…
Reference in New Issue
Block a user