dart_mp_analytics

Creator: coderz1093

Last updated:

0 purchases

dart_mp_analytics Image
dart_mp_analytics Images

Languages

Categories

Add to Cart

Description:

dart mp analytics

Dart MP Analytics





A Dart package for tracking and logging events to Google Analytics using the Measurement Protocol.
Features #

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

Installation #
Add the following line to your pubspec.yaml file:
dependencies:
dart_mp_analytics: ^1.0.0
copied to clipboard
Then, run flutter pub get to install the package.
Usage #
Import the package in your Dart code:
import 'package:dart_mp_analytics/dart_mp_analytics.dart';
copied to clipboard
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,
);
copied to clipboard
Log events using the logEvent method:
await analytics.logEvent('button_click');
copied to clipboard
For more advanced usage and customization, please refer to the package documentation.
Documentation #
Please refer to the API documentation for detailed information on the available classes and methods.
Contributions #
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.
License #
This package is released under the MIT License. See the LICENSE file for more details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.