fix: Temporary disable armv7 support

This commit is contained in:
ChronosX88 2019-08-21 14:03:25 +04:00
parent 907341a955
commit 85c17523b8
Signed by: ChronosXYZ
GPG Key ID: 085A69A82C8C511A

View File

@ -19,7 +19,7 @@ class YggdrasilService : Service() {
val type = CPU_ABI.let { val type = CPU_ABI.let {
when{ when{
it.contains("v8") -> "arm64" it.contains("v8") -> "arm64"
it.contains("v7") -> "armhf" //it.contains("v7") -> "armhf"
else -> throw Exception("Unsupported ABI") else -> throw Exception("Unsupported ABI")
} }
} }