kochava_measurement_apple_tracking 3.2.0 copy "kochava_measurement_apple_tracking: ^3.2.0" to clipboard
kochava_measurement_apple_tracking: ^3.2.0 copied to clipboard

PlatformiOS

The Apple Tracking framework is an optional module which improves install measurement and attribution through the use of cross-site tracking features.

example/lib/main.dart

///
///  KochavaMeasurementAppleTracking (Flutter)
///
///  Copyright (c) 2020 - 2024 Kochava, Inc. All rights reserved.
///

import 'dart:async';
import 'package:flutter/material.dart';
import 'package:kochava_measurement_apple_tracking/kochava_measurement_apple_tracking.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  final _kochavaMeasurementAppleTrackingPlugin =
      KochavaMeasurementAppleTracking();

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text(''),
        ),
      ),
    );
  }
}
1
likes
135
points
2.1k
downloads

Publisher

unverified uploader

Weekly Downloads

The Apple Tracking framework is an optional module which improves install measurement and attribution through the use of cross-site tracking features.

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on kochava_measurement_apple_tracking

Packages that implement kochava_measurement_apple_tracking