mirror of
https://github.com/xerial/snappy-java.git
synced 2025-07-20 12:34:30 +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");
|
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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user