feat: remove cronet

This commit is contained in:
Aunali321 2023-05-06 05:39:46 +05:30
parent 2ebd38ff68
commit 3fe5882145
7 changed files with 9 additions and 68 deletions

View file

@ -1,10 +0,0 @@
// Check for google mobile services on device
import 'package:device_apps/device_apps.dart';
Future<bool> checkForGMS() async {
bool isGMSInstalled = true;
isGMSInstalled = await DeviceApps.isAppInstalled('com.google.android.gms') ||
await DeviceApps.isAppInstalled('com.android.vending');
return isGMSInstalled;
}