#174: Fix folder name for android

This commit is contained in:
Taro L. Saito 2017-12-01 11:03:06 -08:00
parent 8686318c2c
commit 6514348da0

View File

@ -204,9 +204,10 @@ public class OSInfo {
String osArch = System.getProperty("os.arch"); String osArch = System.getProperty("os.arch");
// For Android // For Android
if(isAndroid()) { if(isAndroid()) {
osArch = "android-arm"; return "android-arm";
} }
else if(osArch.startsWith("arm")) {
if(osArch.startsWith("arm")) {
osArch = resolveArmArchType(); osArch = resolveArmArchType();
} }
else { else {