From 63c6412736e127e53ffb82c0365a3f27d57c6353 Mon Sep 17 00:00:00 2001 From: validcube Date: Mon, 29 Jul 2024 23:46:55 +0700 Subject: [PATCH] fix: Correct architecture to armeabi-v7a Signed-off-by: validcube --- lib/ui/views/patcher/patcher_viewmodel.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/views/patcher/patcher_viewmodel.dart b/lib/ui/views/patcher/patcher_viewmodel.dart index 62456bec..f49ec75b 100644 --- a/lib/ui/views/patcher/patcher_viewmodel.dart +++ b/lib/ui/views/patcher/patcher_viewmodel.dart @@ -119,7 +119,7 @@ class PatcherViewModel extends BaseViewModel { Future showIncompatibleArchWarningDialog(BuildContext context) async { final bool notSupported = await AboutInfo.getInfo().then((info) { final List archs = info['supportedArch']; - final supportedAbis = ['arm64-v8a', 'x86', 'x86_64', 'arm-v7a']; + final supportedAbis = ['arm64-v8a', 'x86', 'x86_64', 'armeabi-v7a']; return !archs.any((arch) => supportedAbis.contains(arch)); }); if (context.mounted && notSupported) {