A Dart package for tracking and logging events to Google Analytics using the Measurement Protocol.
- Log events to Google Analytics Measurement Protocol
- Support for different platforms (mobile, web, etc.)
- Configurable options for API endpoints and settings
- Add custom metadata to events
- Debug mode for testing and validation of events before sending them to Google Analytics
Add the following line to your pubspec.yaml
file:
dependencies:
dart_mp_analytics: ^1.0.0
Then, run flutter pub get
to install the package.
Import the package in your Dart code:
import 'package:dart_mp_analytics/dart_mp_analytics.dart';
Initialize the MPAnalytics
instance with the desired options:
final mobileStreamOptions = MPAnalyticsOptions.mobileStream(
firebaseAppId: 'your_firebase_app_id',
appInstanceId: 'your_app_instance_id',
apiSecret: 'your_api_secret',
);
final webStreamOptions = MPAnalyticsOptions.webStream(
measurementId: 'your_measurement_id',
clientId: 'your_client_id',
apiSecret: 'your_api_secret',
);
final analytics = MPAnalytics(
options: mobileStreamOptions // or webStreamOptions,
);
Log events using the logEvent
method:
await analytics.logEvent('button_click');
For more advanced usage and customization, please refer to the package documentation.
Please refer to the API documentation for detailed information on the available classes and methods.
Contributions are welcome! If you find a bug or want to suggest an improvement, please open an issue or submit a pull request on the GitHub repository.
This package is released under the MIT License. See the LICENSE file for more details.