Firebase: Rename events

Asked

Viewed 31 times

0

I received from my company the work of implementing Firebase in our flutter app, studied firebase and found the Events page of Firebase Analytics, and saw that the events already "came with predefined names". I would like to know if you have how to change the name of the events, to facilitate when analyzing the data, if necessary.

I’ve tried this line of code, but it didn’t work:

FirebaseAnalytics().logEvent(name: "main_page");

That line is inside that file:

class FlutterFire extends StatefulWidget {
  void main() async {
    WidgetsFlutterBinding.ensureInitialized();
    await Firebase.initializeApp();
    FirebaseCrashlytics.instance.setCrashlyticsCollectionEnabled(true);
    FlutterError.onError = FirebaseCrashlytics.instance.recordFlutterError;
    WidgetsFlutterBinding.ensureInitialized();
    FirebaseAnalytics().logEvent(name: "main_page");
  }

  @override
  _FlutterFireState createState() => _FlutterFireState();
}

class _FlutterFireState extends State<FlutterFire> {
  Future<void> _initializeFlutterFireFuture;

  Future<void> _testAsyncErrorOnInit() async {
    Future<void>.delayed(
      const Duration(seconds: 2),
      () {
        final List<int> list = <int>[];
        print(list[100]);
      },
    );
  }

  Future<void> _initializeFlutterFire() async {
    await Firebase.initializeApp();

    if (_kTestingCrashlytics) {
      await FirebaseCrashlytics.instance.setCrashlyticsCollectionEnabled(true);
    } else {
      await FirebaseCrashlytics.instance
          .setCrashlyticsCollectionEnabled(!kDebugMode);
    }

    Function originalOnError = FlutterError.onError;
    FlutterError.onError = (FlutterErrorDetails errorDetails) async {
      await FirebaseCrashlytics.instance.recordFlutterError(errorDetails);
      originalOnError(errorDetails);
    };

    if (_kShouldTestAsyncErrorOnInit) {
      await _testAsyncErrorOnInit();
    }
  }

  @override
  void initState() {
    super.initState();
    _initializeFlutterFireFuture = _initializeFlutterFire();
    FirebaseCrashlytics.instance.setCrashlyticsCollectionEnabled(true);
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        appBarTheme: AppBarTheme(
          textTheme: GoogleFonts.fondamentoTextTheme(Theme.of(context).textTheme),
        ),
        primarySwatch: Colors.cyan,
        accentColor: Colors.cyan[900],
      ),
      home: Scaffold(
        appBar: AppBar(
          backgroundColor: Colors.cyan,
          centerTitle: true,
          leading: IconButton(
            icon: Icon(Icons.arrow_back_ios),
            color: Colors.white,
            onPressed: () {
              Navigator.pop(context);
              Navigator.push(
                context,
                new MaterialPageRoute(
                  builder: (context) => new MainPage(),
                ),
              );
            },
          ),
          title: Text(
            "Firebase App",
            style: TextStyle(
                color: Colors.white,
                fontSize: 30 * MediaQuery.of(context).textScaleFactor),
          ),
        ),
        body: FutureBuilder(
          future: _initializeFlutterFireFuture,
          builder: (context, snapshot) {
            switch (snapshot.connectionState) {
              case ConnectionState.done:
                if (snapshot.hasError) {
                  return Center(
                    child: Text('Error: ${snapshot.error}'),
                  );
                }
                return Center(
                  child: Column(
                    children: <Widget>[
                      RaisedButton(
                        child: const Text('Ok'),
                        onPressed: () {
                          FirebaseCrashlytics.instance.log('Ok');
                          Scaffold.of(context).showSnackBar(
                            SnackBar(
                              content: Text('Everything is ok!'),
                              duration: Duration(seconds: 10),
                            ),
                          );
                        },
                      ),
                      RaisedButton(
                        child: const Text('Key'),
                        onPressed: () {
                          FirebaseCrashlytics.instance
                              .setCustomKey('example', 'flutterfire');
                          Scaffold.of(context).showSnackBar(
                            SnackBar(
                              content: Text(
                                  'Custom Key "example: flutterfire" has been set \n'
                                  'Key will appear in Firebase Console once app has crashed and reopened'),
                              duration: Duration(seconds: 10),
                            ),
                          );
                        },
                      ),
                      RaisedButton(
                        child: const Text('Log'),
                        onPressed: () {
                          FirebaseCrashlytics.instance
                              .log('This is a log example');
                          Scaffold.of(context).showSnackBar(
                            SnackBar(
                              content: Text(
                                  'The message "This is a log example" has been logged \n'
                                  'Message will appear in Firebase Console once app has crashed and reopened'),
                              duration: Duration(seconds: 10),
                            ),
                          );
                        },
                      ),
                      RaisedButton(
                        child: const Text('Crash'),
                        onPressed: () async {
                          Scaffold.of(context).showSnackBar(
                            SnackBar(
                              content: Text('App will crash is 5 seconds \n'
                                  'Please reopen to send data to Crashlytics'),
                              duration: Duration(seconds: 10),
                            ),
                          );

                          sleep(
                            const Duration(seconds: 10),
                          );

                          FirebaseCrashlytics.instance.crash();
                        },
                      ),
                      RaisedButton(
                        child: const Text('Throw Error'),
                        onPressed: () {
                          Scaffold.of(context).showSnackBar(
                            SnackBar(
                              content: Text('Thrown error has been caught \n'
                                  'Please crash and reopen to send data to Crashlytics'),
                              duration: Duration(seconds: 10),
                            ),
                          );

                          throw StateError('Uncaught error thrown by app');
                        },
                      ),
                      RaisedButton(
                        child: const Text('Record Error'),
                        onPressed: () async {
                          try {
                            Scaffold.of(context).showSnackBar(
                              SnackBar(
                                content: Text('Recorded Error  \n'
                                    'Please crash and reopen to send data to Crashlytics'),
                                duration: Duration(seconds: 10),
                              ),
                            );
                            throw 'error_example';
                          } catch (e, s) {
                            await FirebaseCrashlytics.instance
                                .recordError(e, s, reason: 'as an example');
                          }
                        },
                      ),
                      RaisedButton(
                        child: const Text('Async out of bounds'),
                        onPressed: () {
                          Scaffold.of(context).showSnackBar(
                            SnackBar(
                              content: Text(
                                  'Uncaught Exception that is handled by second parameter of runZonedGuarded \n'
                                  'Please crash and reopen to send data to Crashlytics'),
                              duration: Duration(seconds: 10),
                            ),
                          );

                          runZonedGuarded(() {
                            Future<void>.delayed(
                              const Duration(seconds: 2),
                              () {
                                final List<int> list = <int>[];
                                print(list[100]);
                              },
                            );
                          }, FirebaseCrashlytics.instance.recordError);
                        },
                      ),
                    ],
                  ),
                );
                break;
              default:
                return Center(
                  child: Text('Loading'),
                );
            }
          },
        ),
      ),
    );
  }
}
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.