mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-04-30 05:54:26 +02:00
fix: Correct architecture to armeabi-v7a
Signed-off-by: validcube <pun.butrach@gmail.com>
This commit is contained in:
parent
a7663524e6
commit
63c6412736
@ -119,7 +119,7 @@ class PatcherViewModel extends BaseViewModel {
|
|||||||
Future<void> showIncompatibleArchWarningDialog(BuildContext context) async {
|
Future<void> showIncompatibleArchWarningDialog(BuildContext context) async {
|
||||||
final bool notSupported = await AboutInfo.getInfo().then((info) {
|
final bool notSupported = await AboutInfo.getInfo().then((info) {
|
||||||
final List<String> archs = info['supportedArch'];
|
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));
|
return !archs.any((arch) => supportedAbis.contains(arch));
|
||||||
});
|
});
|
||||||
if (context.mounted && notSupported) {
|
if (context.mounted && notSupported) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user