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:
Connor Tumbleson 2018-04-06 14:02:41 -04:00
parent 7360fd1dd8
commit 25a164dd10

View File

@ -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);