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

Track clicks, installs, and revenue from every link. Lightweight install tracking for Flutter apps.

Instally Flutter SDK #

Track clicks, installs, and revenue from every link. Lightweight install tracking for Flutter apps.

instally.io

Installation #

Add to your pubspec.yaml:

dependencies:
  instally: ^1.0.0

Then run:

flutter pub get

Quick Start #

1. Configure #

Call once in your main() or initState():

import 'package:instally/instally.dart';

Instally.configure(appId: 'app_xxx', apiKey: 'key_xxx');

2. Track Installs #

Call on every app launch. The SDK automatically ensures it only runs once per install:

final result = await Instally.trackInstall();
print('Matched: ${result.matched}');

Connect your user ID (e.g. RevenueCat, Qonversion) so server-side webhooks can attribute purchases:

await Instally.setUserId(Purchases.appUserID);

4. Track Purchases (Optional) #

If you're not using a server-side integration, you can track purchases directly:

await Instally.trackPurchase(
  productId: 'premium_monthly',
  revenue: 9.99,
  currency: 'USD',
  transactionId: purchaseDetails.purchaseID,
);

API Reference #

Method Description
Instally.configure(appId:, apiKey:) Initialize the SDK
Instally.trackInstall() Track install attribution (returns Future<AttributionResult>)
Instally.trackPurchase(...) Track a purchase
Instally.setUserId(userId) Link an external user ID
Instally.isAttributed Whether this install was attributed to a link
Instally.attributionId The attribution ID (null if not attributed)

Requirements #

  • Flutter 3.10+
  • Dart 3.0+

Resources #

  • Instally Website — Track clicks, installs, and revenue from every link
  • Dashboard — Real-time analytics for your app installs
  • Documentation — Full SDK docs and API reference
  • Pricing — Free tier available, no credit card required
  • Blog — Guides on install tracking, IDFA, and more

Other SDKs #

License #

MIT

1
likes
150
points
11
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Track clicks, installs, and revenue from every link. Lightweight install tracking for Flutter apps.

Homepage
Repository (GitHub)
View/report issues

Topics

#analytics #tracking #mobile #attribution #install-tracking

License

MIT (license)

Dependencies

flutter, http, shared_preferences

More

Packages that depend on instally