flutuate_mixpanel
안드로이드 기기용으로 Mixpanel API를 사용하기 위한 플러터 플러그인입니다.
Mixpanel용 플러터 플러그인
{"sdk":"flutter"}^1.14.4{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A Flutter plugin for Mixpanel.
This plugin wraps the most of the functions from Mixpanel SDK. It runs on both Android and iOS. To use it, you must have a registered token from Mixpanel.
Add flutuate_mixpanel to pubspec.yaml under the dependencies field.
dependencies:
flutuate_mixpanel: ^latest_version
Add the following import in your library :
import 'package:flutuate_mixpanel/flutuate_mixpanel.dart';
For you to use the plugin, in your Flutter app, get an instance of Mixpanel plugin:
MixpanelAPI instance = await MixpanelAPI.getInstance('<your_mixpanel_token');
So after, you only call the API methods specified in Mixpanel Android API documentation.
See also the Mixpanel documentation for more informations.
The sample project has more details about how to use the plugin.