Thanks Roman! Would that be the /data/ directory in the Android folder?
I tried to replicate the behavior by putting an exit(-1) in my code just after SentryFlutter.init but I don't see any files on my physical android device.
await SentryFlutter.init(
(options) {
options.dsn =
'removed for security';
// Adds request headers and IP for users, for more info visit:
// https://docs.sentry.io/platforms/dart/guides/flutter/data-management/data-collected/
options.sendDefaultPii = true;
// Set tracesSampleRate to 1.0 to capture 100% of transactions for tracing.
// We recommend adjusting this value in production.
options.tracesSampleRate = 1.0;
// The sampling rate for profiling is relative to tracesSampleRate
// Setting to 1.0 will profile 100% of sampled transactions:
options.profilesSampleRate = 1.0;
},
appRunner: () => runApp(SentryWidget(
child: GetMaterialApp(
initialRoute: "/",
debugShowCheckedModeBanner: false,
color: _themeColor,
theme: ThemeData(primarySwatch: _themeColor),
home: MyApp(
presentUserAgreement: false,
),
))),
);
exit(-1);