https://github.com/appmetrica/appmetrica-flutter-plugin
AppMetrica Plugin for Flutter
https://github.com/appmetrica/appmetrica-flutter-plugin
analytics android appmetrica crashes flutter ios
Last synced: 7 months ago
JSON representation
AppMetrica Plugin for Flutter
- Host: GitHub
- URL: https://github.com/appmetrica/appmetrica-flutter-plugin
- Owner: appmetrica
- License: other
- Created: 2024-05-07T14:04:55.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-28T10:04:06.000Z (over 1 year ago)
- Last Synced: 2025-01-28T11:22:27.568Z (over 1 year ago)
- Topics: analytics, android, appmetrica, crashes, flutter, ios
- Language: Java
- Homepage: https://appmetrica.io
- Size: 164 KB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
# AppMetrica SDK for Flutter
A Flutter plugin for AppMetrica by Yandex. AppMetrica is an end-to-end app analytics and marketing tool that works across all major mobile platforms.
## Supported Features
This library helps you collect the following data:
* Device information. Rich technology reports include information on OS, phone makers and models, screen resolution, interface language and other parameters.
* Referral information. Be aware how the user got to the app.
* Your audience. All the pivotal product KPIs (such as MAU, WAU, DAU, ect.) are ready at hand and updated in real time.
* User profiles. Study characteristics and the history of actions for individual users to get a close-up view of behavior patterns.
* In-app sales revenue and related revenue metrics: ARPU, average order value, repeated purchases and more.
* Errors that occurred during app run. All crashes and errors in AppMetrica’s easy-to-read reports are grouped together with OS/app version and other technical details.
* Any custom events.
* And other features available for AppMetrica SDK users on Android or iOS.
You can learn more on [AppMetrica web site](https://appmetrica.io).
## Getting Started
In your flutter project add the following dependency:
```
dependencies:
...
appmetrica_plugin: ^3.4.0
```
Activate library using `AppMetrica.activate` with your API Key
```
AppMetrica.activate(AppMetricaConfig("insert_your_api_key_here"));
```
And report event via `AppMetrica.reportEvent`
```
AppMetrica.reportEvent('My first AppMetrica event!');
```
## Suggesting improvements
To file bugs, make feature requests, or to suggest other improvements, please use the [feedback form](https://appmetrica.io/docs/en/troubleshooting/index).
## Notes
This plugin uses [Pigeon](https://pub.dev/packages/pigeon) to generate interfaces for communication between Flutter and host platform.