mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
11 lines
329 B
Dart
11 lines
329 B
Dart
// 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;
|
|
}
|