AAPT2: Accept zip, jack, jar, and flata extensions as archives
Change-Id: I3a4db129998e2351e8221f9d72a4b40d2c7a8cf9
This commit is contained in:
@@ -523,7 +523,10 @@ public:
|
||||
}
|
||||
|
||||
bool processFile(const std::string& path, bool override) {
|
||||
if (util::stringEndsWith<char>(path, ".flata")) {
|
||||
if (util::stringEndsWith<char>(path, ".flata") ||
|
||||
util::stringEndsWith<char>(path, ".jar") ||
|
||||
util::stringEndsWith<char>(path, ".jack") ||
|
||||
util::stringEndsWith<char>(path, ".zip")) {
|
||||
return mergeArchive(path, override);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user