mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
10 lines
329 B
Dart
10 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;
|
|
}
|