Documentation

Quickstart

Install the SDK, configure your API key, and send your first test event. Takes about 5 minutes.

Get your API key

Create an app in the AppSprint dashboard and copy your live API key. Keys start with as_live_.

Install the SDK

Pick your platform and add the package:

React Native / Expo

npm install appsprint-react-native@^1.1.9

iOS (Swift Package Manager)

// Xcode → File → Add Package Dependencies
// URL: https://github.com/getappsprint/appsprint-ios-sdk
// Version: from "1.1.7"

Android (Gradle)

implementation("app.appsprint:sdk:1.1.2")

Flutter

flutter pub add appsprint_flutter:^1.1.7

Configure the SDK

Call configure() as early as possible, ideally in your root component or App Delegate.

import { AppSprint } from 'appsprint-react-native';
await AppSprint.configure({
apiKey: 'as_live_xxxxx',
});

This registers the install, collects privacy-conscious device signals for attribution, and starts matching.

Send a test event

Use sendTestEvent() to verify end-to-end connectivity:

const result = await AppSprint.sendTestEvent();
console.log(result.success, result.message);

View in dashboard

Open your app in the AppSprint dashboard. You should see the test event within seconds.

Next steps