#docs #guides #Setup #Flutter #Dart

Flutter Setup Guide

You have an account, and you have an app ID. Now let's include the TelemetryClient Package in your Flutter application

Prerequisites

  • You’ll need a TelemetryDeck account. Sign up for free if you don’t have one yet.
  • You’ll need a TelemetryDeck App ID. Create a new app if you don’t have one yet.
  • Follow the installing instructions on pub.dev.

Initialization

Initialize the TelemetryClient like so:

void main() {
  // ensure the platform channels are available
  WidgetsFlutterBinding.ensureInitialized();
  // configure and start the client
  Telemetrydecksdk.start(
    const TelemetryManagerConfiguration(
      appID: "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
    ),
  );

  runApp(const MyApp());
}

Permission for internet access

Sending signals requires access to the internet so the following permissions should be granted. You can also take this from Flutter’s Cross-platform HTTP networking guide.

Android

Change the app’s AndroidManifest.xml to include:

<uses-permission android:name="android.permission.INTERNET" />

macOS

Set the com.apple.security.network.client entitlement to true in the macos/Runner/DebugProfile.entitlements and macos/Runner/Release.entitlements files. You can also do this in Xcode by selecting the macos target, then the Signing & Capabilities tab, and checking Outgoing connections (Client) for both the Release and Debug targets of your app.

Verify your setup

Build and run your app to verify that TelemetryDeck is properly integrated. The SDK automatically begins collecting data when initialized.

Open the TelemetryDeck Dashboard, navigate to “Explore > Recent Signals” and make sure “Test Mode” is enabled. You should see automatic signals appear after launching your app.


Enhancing your analytics (optional)

While basic session tracking provides valuable information, sending custom events lets you answer questions specific to how users engage with your app.

Sending custom events

Send a simple event using the following method:

Telemetrydecksdk.send("signal_type")

You can append any number of custom attributes to a signal:

Telemetrydecksdk.send("signal_type",
  additionalPayload: {"attributeName": "value"});
}

To temporarily stop sending signals (for example, if a user opts out):

Telemetrydecksdk.stop()

In order to restart sending events, you will need to call the start method again.

Additional configuration options

Manual Test Mode control

If you want to manually control whether test mode is active, you can set the testMode field:

Telemetrydecksdk.start(
  const TelemetryManagerConfiguration(
    appID: "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
    testMode: true
  ),
);

Logging output

Enable additional logs by setting the debug field to true:

void main() {
  Telemetrydecksdk.start(
    const TelemetryManagerConfiguration(
      appID: "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
      debug: true
    ),
  );
}

Custom server

A tiny subset of our customers will want to use a custom signal ingestion server or a custom proxy server. To do so, you can pass the URL of the custom server to the TelemetryManagerConfiguration:

Telemetrydecksdk.start(
  const TelemetryManagerConfiguration(
    appID: "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
    apiBaseURL: "https://nom.telemetrydeck.com",
  ),
);

For more advanced configuration options, programmatic usage and information about signals, parameters and all other aspects of the SDK, check out the README file.

App Store requirements

When publishing your Flutter app, you’ll need to address privacy requirements:

  • iOS Apps: Disclose analytics usage in Apple’s App Store Connect privacy details. TelemetryDeck is privacy-focused, but disclosure is still required.
  • All Platforms: Consider updating your privacy policy to mention analytics collection.

For guidance, see our Apple App Privacy guide and Privacy FAQ.

What to do next

Now that you’ve integrated TelemetryDeck, learn how to use the analytics platform to gain valuable insights about your users:

📊 Analytics Walkthrough

Learn how to navigate TelemetryDeck, interpret insights, and use analytics to make data-driven decisions that improve your app and grow your user base.

Start here to get real value from your analytics