Windows binary is still 32 bit

This commit is contained in:
Connor Tumbleson 2017-08-27 09:54:36 -04:00
parent 481299c748
commit e9618fae6b
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75

View File

@ -788,7 +788,7 @@ final public class AndrolibResources {
public File getAaptBinaryFile() throws AndrolibException {
File aaptBinary;
if (! OSDetection.is64Bit()) {
if (! OSDetection.is64Bit() && ! OSDetection.isWindows()) {
throw new AndrolibException("32 bit OS detected. No 32 bit binaries available.");
}