mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 23:40:41 +00:00
fc37016770
* removed unused analytics event & added `logCrash` * added analytics to `RemoteConfigService` * run app with `runZonedGuarded` * added crash logging to `CameraContainerBloc` * log product id for IAP errors * typo * log crashes in `RemoteConfigService` * ignore silent `FlutterError` * fixed `evFromImage` test * fixed `showBuyProDialog` test * log errors in console * depend on iap 0.7.2
15 lines
337 B
Dart
15 lines
337 B
Dart
abstract class ILightmeterAnalyticsApi {
|
|
Future<void> logEvent(
|
|
String eventName, {
|
|
Map<String, dynamic>? parameters,
|
|
});
|
|
|
|
Future<void> logCrash(
|
|
dynamic exception,
|
|
StackTrace? stack, {
|
|
dynamic reason,
|
|
Iterable<Object> information = const [],
|
|
});
|
|
|
|
Future<void> setCustomKey(String key, String value);
|
|
}
|