Skip to content

Commit 323b514

Browse files
author
tangyinsheng
committed
[tinker] Fix: getCurrentInstructionSet() failed on some Android 4.4 devices.
1 parent 610dcaa commit 323b514

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tinker-android/tinker-android-loader/src/main/java/com/tencent/tinker/loader/shareutil/ShareTinkerInternals.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ public static String getCurrentInstructionSet() {
116116
} catch (Throwable ignored) {
117117
switch (Build.CPU_ABI) {
118118
case "armeabi":
119-
case "armeabi_v7a":
119+
case "armeabi-v7a":
120120
currentInstructionSet = "arm";
121121
break;
122-
case "arm64_v8a":
122+
case "arm64-v8a":
123123
currentInstructionSet = "arm64";
124124
break;
125125
case "x86":

0 commit comments

Comments
 (0)