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

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.9

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() {
  WidgetsFlutterBinding.ensureInitialized();
  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
140
points
50
downloads

Publisher

verified publisheraskrudi.com

Weekly Downloads

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

Repository (GitHub)

Topics

#api #logging #analytics

Documentation

API reference

License

MIT (license)

Dependencies

flutter, http, js, package_info_plus, shared_preferences, universal_io, web

More

Packages that depend on telemetric