From 54461453eba2eeeaf019c37296effae268fe030f Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Thu, 17 Oct 2024 13:33:08 +0530 Subject: [PATCH] [mob] Remove unused method --- mobile/lib/utils/device_info.dart | 8 -------- 1 file changed, 8 deletions(-) diff --git a/mobile/lib/utils/device_info.dart b/mobile/lib/utils/device_info.dart index f706dbaa3c..70aae5d55a 100644 --- a/mobile/lib/utils/device_info.dart +++ b/mobile/lib/utils/device_info.dart @@ -42,14 +42,6 @@ Future isLowSpecDevice() async { return false; } -Future isGrapheneOS() async { - if (Platform.isAndroid) { - final androidInfo = await deviceInfoPlugin.androidInfo; - return androidInfo.host.toLowerCase() == "grapheneos"; - } - return false; -} - Future isAndroidSDKVersionLowerThan(int inputSDK) async { if (Platform.isAndroid) { final AndroidDeviceInfo androidInfo = await deviceInfoPlugin.androidInfo;