From cb2ce150282e342922a389b7f1cc567b70108555 Mon Sep 17 00:00:00 2001 From: Pierre-Hugues Husson Date: Sat, 20 Jun 2020 00:19:13 +0200 Subject: [PATCH] Enable ART automatic CPU feature detection. Also fix some devices using a wrong kryo name --- rw-system.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/rw-system.sh b/rw-system.sh index 4550c10..e53f716 100644 --- a/rw-system.sh +++ b/rw-system.sh @@ -770,3 +770,10 @@ if getprop ro.vendor.build.fingerprint |grep -q vsmart/V620A_open;then fi setprop vendor.display.res_switch_en 1 + +setprop dalvik.vm.isa.arm64.features runtime +if getprop ro.bionic.cpu_variant |grep -q kryo300;then + resetprop ro.bionic.cpu_variant cortex-a75 + setprop dalvik.vm.isa.arm64.variant cortex-a75 +fi +