FLUTTER ECOSYSTEM

rafalbednarczuk/facebook_analytics

Flutter Facebook-Analyse

Projektcover von facebook_analytics
Stars
9
Forks
9
Letzter Push (UTC)
02.03.2021
Projektstatus
Aktiv
rafalbednarczuk GitHub avatar
SprachenDartRubyKotlinSwiftShellObjective-C

Verwendete Abhängigkeiten

Abhängigkeiten 2 Einträge
  • flutter{"sdk":"flutter"}
  • flutter_testEntwicklung{"sdk":"flutter"}

Original-README

Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.

Projekt-README ein-/ausklappen

facebook_analytics

pub package

Flutter Package implementing Facebook Analytics.

Installation

Android

https://developers.facebook.com/quickstarts/
Complete only: Add SKD, App Info, Key Hashes

iOS

https://developers.facebook.com/quickstarts/
Complete only: Configure(add XML snippet to plist), Bundle Identifier

add this line in ios/Podfile to 9.0 (in most cases just uncomment this line in the beginning of Podfile)
platform :ios, '9.0'

Example

import 'package:facebook_analytics/facebook_analytics.dart';
final facebookAnalytics = FacebookAnalytics();
...
RaisedButton(onPressed: () {
    facebookAnalytics.logEvent(
      name: "test_event",
      parameters: {"value": 10, "subname": "exampleStringValue"},
    );
  })