mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 09:07:47 +01:00
2e38a4567a
This commit changes `Arch` to `Supported Arch(s)`
17 lines
577 B
Dart
17 lines
577 B
Dart
import 'package:device_info_plus/device_info_plus.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:package_info_plus/package_info_plus.dart';
|
|
|
|
class AboutInfo {
|
|
static Future<Map<String, dynamic>> getInfo() async {
|
|
final packageInfo = await PackageInfo.fromPlatform();
|
|
final info = await DeviceInfoPlugin().androidInfo;
|
|
return {
|
|
'version': packageInfo.version,
|
|
'flavor': kReleaseMode ? 'release' : 'debug',
|
|
'model': info.model,
|
|
'androidVersion': info.version.release,
|
|
'supportedArch': info.supportedAbis
|
|
};
|
|
}
|
|
}
|