myappcrew_flutter

Lightweight MyAppCrew client for Flutter. Sends first_open, periodic heartbeat, and error_shown with HMAC; supports deep-link tester linking.

Quick start

import 'package:myappcrew_flutter/myappcrew_flutter.dart';

await MyAppCrew.I.init(const MyAppCrewOptions(
  baseUrl: "https://<your-domain>/api/v1",
  publicKey: "pk_...",
  hmacSecret: "skh_...",
  heartbeatEvery: Duration(minutes: 1),
));
await MyAppCrew.I.trackError(code: "LOGIN_FAILED");

Libraries

myappcrew_flutter