mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
18 lines
526 B
Dart
18 lines
526 B
Dart
|
import 'package:package_info_plus/package_info_plus.dart';
|
||
|
import 'package:device_info_plus/device_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,
|
||
|
'buildNumber': packageInfo.buildNumber,
|
||
|
'model': info.model,
|
||
|
'androidVersion': info.version.release,
|
||
|
'arch': info.supported64BitAbis
|
||
|
};
|
||
|
}
|
||
|
}
|