mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: Correct architecture to armeabi-v7a
Signed-off-by: validcube <pun.butrach@gmail.com>
This commit is contained in:
parent
a7663524e6
commit
63c6412736
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue