Last updated:
0 purchases
google api availability
Flutter Google Api Availability Plugin #
A Flutter plugin to check the availability of Google Play services on the current device.
Features #
Check the availability of Google Play services (on Android only).
Usage #
To use this plugin, add google_api_availability as a dependency in your pubspec.yaml file. For example:
dependencies:
google_api_availability: ^3.0.2
copied to clipboard
NOTE: There's a known issue with integrating plugins that use Swift into a Flutter project created with the Objective-C template. See issue Flutter#16049 for help on integration.
API #
GoogleApiAvailability #
To check the availability of Google Play services on the current device, you can use the checkGooglePlayServicesAvailability method. This could be helpful to provide a more friendly experience to users in case an user-action is required to enable support for Google Play services (More information can be found here).
import `package:google_api_availability/google_api_availability.dart`;
GooglePlayServicesAvailability availability = await GoogleApiAvailability.instance.checkGooglePlayServicesAvailability();
copied to clipboard
If you want to show a dialog by the Android system with more information and show a possible fix to the user you can do:
import `package:google_api_availability/google_api_availability.dart`;
GooglePlayServicesAvailability availability = await GoogleApiAvailability.instance.checkGooglePlayServicesAvailability(true);
copied to clipboard
Note that on iOS this will always return notAvailableOnPlatform!
See also the example project for a complete implementation.
Issues #
Please file any issues, bugs or feature request as an issue on our GitHub page.
Want to contribute #
If you would like to contribute to the plugin (e.g. by improving the documentation, solving a bug or adding a cool new feature), please carefully review our contribution guide and send us your pull request.
Author #
This Google API Availability plugin for Flutter is developed by Baseflow. You can contact us at [email protected]
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.