feat: create missing directories

This commit is contained in:
oSumAtrIX 2023-08-12 01:59:12 +02:00
parent 9c6dffab51
commit adc9452f66
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -83,6 +83,10 @@ public class AaptInvoker {
if (resDir != null) {
File buildDir = new File(resDir.getParent(), "build");
//noinspection ResultOfMethodCallIgnored
buildDir.mkdir();
resourcesZip = new File(buildDir, "resources.zip");
}