Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1432fca1 authored by Clark Scheff's avatar Clark Scheff
Browse files

CM11 Themes: Take into account ALL res/xml dirs

Only res/xml was being searched for redirection XML files, which
causes themes that use xml-v14, xml-v19, etc to be overlooked and
resources not being mapped.

Change-Id: I8ccad5770250150a95ec3b89be56f8d01025b126
parent 8b123471
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -886,7 +886,7 @@ public class PackageParser {
            while (entries.hasMoreElements()) {
                final ZipEntry entry = entries.nextElement();
                final String entryName = entry.getName();
                if (entryName.startsWith("res/xml/") && !entryName.contains(PACKAGE_REDIRECTIONS_XML)) {
                if (entryName.startsWith("res/xml") && !entryName.contains(PACKAGE_REDIRECTIONS_XML)) {
                    redirectionsList.add(entryName);
                }
            }