don't compress mkv/webm

This commit is contained in:
Connor Tumbleson 2016-08-24 08:44:24 -04:00
parent 67d80a133f
commit 7801a4bbf2
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75

View File

@ -752,6 +752,6 @@ public class Androlib {
// Taken from AOSP's frameworks/base/tools/aapt/Package.cpp
private final static Pattern NO_COMPRESS_PATTERN = Pattern.compile("\\.(" +
"jpg|jpeg|png|gif|wav|mp2|mp3|ogg|aac|mpg|mpeg|mid|midi|smf|jet|rtttl|imy|xmf|mp4|" +
"m4a|m4v|3gp|3gpp|3g2|3gpp2|amr|awb|wma|wmv)$");
"m4a|m4v|3gp|3gpp|3g2|3gpp2|amr|awb|wma|wmv|webm|mkv)$");
}