Skip to content

domliang/flurry_plugin_flutter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flurry_event

fork from flurry add logEvent params.

Getting Started

This is a Flutter plugin to use Flurry Analytics. It implements native calls to Flurry Android SDK and Flurry iOS SDK. The plugin logs sessions, crash detections, simple event logging, and UserId.

Installation

Add flurry_event: ^0.1.3 in your pubspec.yaml dependencies.

How to use

importing the library:

import 'package:flurry_event/flurry.dart';

initialization:

await FlurryEvent.initialize(
  androidKey: "xxx",
  iosKey: "xxx",
  enableLog: true,
  );

logging/setting userId:

FlurryEvent.setUserId("1234");

logging event:

FlurryEvent.logEvent("event name", {
    'foo': 'bar',
  },
);

Paypal

Buy Me A Coffee

About

A Flutter plugin to use Flurry Analytics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 27.8%
  • Ruby 24.5%
  • Objective-C 23.0%
  • Dart 20.3%
  • Shell 4.4%