telemetric 0.0.8 copy "telemetric: ^0.0.8" to clipboard
telemetric: ^0.0.8 copied to clipboard

retracted

The privacy friendly, open source way of collecting user data.

Official Telemetric Flutter & Dart Package #

Telemetric is the privacy friendly, open source way of collecting user data. Use it in your apps, websites and webapps without having to worry about privacy compliance.

Installing #

Run this in your terminal:

flutter pub add telemetric

OR add the following to your pubspec.yaml file:

dependencies:
  telemetric: ^0.0.7

Usage #

Initialization #

Initialize the Telemetric package with your project ID. This should be done once, typically in the main method of your app.

import 'package:telemetric/telemetric.dart';

void main() {
  Telemetric.initialize('YOUR_PROJECT_ID');
}

Event Tracking #

You can use emojis here and white space. E.g "App Launched ✨"

Telemetric.event('event_name');

Revenue Tracking #

Track revenue by calling the revenue method with the amount as a double. E.g 0.99$ = 0.99, 5.49$ = 5.49

Telemetric.revenue(1.99);

Support #

If you have any questions or need help, feel free to open an issue on GitHub, or join the X Community.

2
likes
0
points
311
downloads

Publisher

verified publisheraskrudi.com

Weekly Downloads

The privacy friendly, open source way of collecting user data.

Repository (GitHub)
View/report issues

Topics

#api #logging #analytics

License

unknown (license)

Dependencies

flutter, http, shared_preferences, web

More

Packages that depend on telemetric