flutter_attribution_plugin 1.0.0 copy "flutter_attribution_plugin: ^1.0.0" to clipboard
flutter_attribution_plugin: ^1.0.0 copied to clipboard

Flutter plugin providing access to Apple Search Ads Attribution Token (iOS) and Google Play Install Referrer URL (Android).

flutter_attribution_plugin #

A lightweight Flutter plugin for accessing native mobile attribution data

  • 🍏 Apple Search Ads Attribution Token (iOS 14.3+)
  • πŸ€– Google Play Install Referrer URL (Android)
  • βš–οΈ Dual licensing (GPL-3.0-only + Commercial)

No AppsFlyer, Adjust, Branch or other third-party attribution SDKs required

Installation #

flutter pub add flutter_attribution_plugin

Usage #

import 'dart:io'; // Required for Platform check
import 'package:flutter_attribution_plugin/flutter_attribution_plugin.dart';

String? attributionToken;
String? referrerUrl;

if (Platform.isIOS) {
  // Returns Apple Search Ads token as string value
  attributionToken = await AttributionPlugin.getIosAttributionToken();
} else if (Platform.isAndroid) {
  // Returns raw Google Play Install Referrer URL string
  referrerUrl = await AttributionPlugin.getAndroidReferrerUrl();
}

iOS Requirements #

Android Requirements #

πŸ“„ License & Commercial Use #

This project is dual-licensed to accommodate both open-source development and commercial products:

  1. GPL-3.0-only: Free to use ONLY for open-source applications. If your app's source code is public and under a compatible open-source license, you can use this plugin for free.
  2. Commercial License: REQUIRED for proprietary, closed-source, commercial applications and enterprise software. If you cannot disclose your app's source code under the GPLv3 copyleft terms, you must purchase a Commercial License.

For pricing, licensing terms, and acquisition, please visit:
πŸ”— https://inphinit.space/flutter_attribution_plugin

Contact for Commercial Licenses: #

πŸ“© inphinit.dev@gmail.com

0
likes
0
points
28
downloads

Publisher

verified publisherinphinit.space

Weekly Downloads

Flutter plugin providing access to Apple Search Ads Attribution Token (iOS) and Google Play Install Referrer URL (Android).

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_attribution_plugin

Packages that implement flutter_attribution_plugin