mirror of
https://github.com/xerial/snappy-java.git
synced 2025-07-19 20:14:33 +02:00
#174: Fix folder name for android
This commit is contained in:
parent
8686318c2c
commit
6514348da0
@ -204,9 +204,10 @@ public class OSInfo {
|
||||
String osArch = System.getProperty("os.arch");
|
||||
// For Android
|
||||
if(isAndroid()) {
|
||||
osArch = "android-arm";
|
||||
return "android-arm";
|
||||
}
|
||||
else if(osArch.startsWith("arm")) {
|
||||
|
||||
if(osArch.startsWith("arm")) {
|
||||
osArch = resolveArmArchType();
|
||||
}
|
||||
else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user