0 purchases
clickzin tracking flutter sdk
Additional information #
CLickzin flutter android tracking sdk
Packages used with version: #
android_play_install_referrer: ^0.3.0
http: ^1.1.0
shared_preferences: ^2.2.2
copied to clipboard
Steps to integrate SDK #
Step 1: Add dependency in pubspec.yaml #
clickzin_tracking_flutter_sdk: <latest version>
copied to clipboard
Step 2: In main.dart, add imports #
import 'package:clickzin_tracking_flutter_sdk/clickzin_tracking_flutter_sdk.dart';
copied to clipboard
Step 3: In first widget , create instance of ClickzinTracker and in initState call startTracking with initial event name.Most of the time initial event will be install #
var appKey = "As provided by your marketing partners.";
final ClickzinTracker _clickzinTracker = ClickzinTracker(appKey, true);
@override
void initState() {
super.initState();
_clickzinTracker.startTracking("initial event", (String? uid, String? source, String? eventId) =>
{
// On Success, callback will be sent and application can take any action like updating the db & so on
});
}
copied to clipboard
Step 4: Track events in respective events widget with respective event name.Events like register, sale, login and so on will be tracked using this api. #
final ClickzinTracker _clickzinTracker = ClickzinTracker(appKey, true);
void onAnyeventSuccess() {
_clickzinTracker.trackEvent(
"any specific event", (String? uid, String? source, String? eventId) =>
{
// On Success, callback will be sent and application can take any action like updating the db & so on
});
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.