Skip to content

Commit

Permalink
fix: Correct architecture to armeabi-v7a
Browse files Browse the repository at this point in the history
Signed-off-by: validcube <pun.butrach@gmail.com>
  • Loading branch information
validcube committed Jul 29, 2024
1 parent a766352 commit 63c6412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ui/views/patcher/patcher_viewmodel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class PatcherViewModel extends BaseViewModel {
Future<void> showIncompatibleArchWarningDialog(BuildContext context) async {
final bool notSupported = await AboutInfo.getInfo().then((info) {
final List<String> 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) {
Expand Down

0 comments on commit 63c6412

Please sign in to comment.