Last updated:
0 purchases
gms check
gms_check #
This tiny plugin simply checks if Google Services is available on the Android device.
For other platform, it always return true as default.
This will help you to avoid initializing unnecessary services that require Google Services to run on the device, such as: Firebase App Check, Firebase Cloud Messaging,...
Usage #
Call await GmsCheck().checkGmsAvailability() before runApp() in main().
Future<void> main() async {
/// Need to call GmsCheck().checkGmsAvailability()
/// only once before runApp function.
await GmsCheck().checkGmsAvailability();
runApp(const MyApp());
}
copied to clipboard
Use GmsCheck().isGmsAvailable any where in the app.
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: Text('GMS available: ${GmsCheck().isGmsAvailable}'),
),
),
);
}
copied to clipboard
You can use GmsCheck().isGmsAvailable to conditionally initialize Firebase services.
if (GmsCheck().isGmsAvailable) {
_initFirebaseAppCheck();
_initFirebaseCloudMessaging();
}
_initFirebaseRemoteConfig();
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.