skip to Main Content

Unable to send log event in html Firebase Analytics

Firebase analytics problem in JS Hello I am unable to send lo event in my html and js website. My code <html> <head> <title>Test</title> </head> <body> <script type="module"> import { initializeApp } from "https://www.gstatic.com/firebasejs/9.15.0/firebase-app.js"; import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.15.0/firebase-analytics.js";…

VIEW QUESTION

firebase_analytics '' is an invalid event name – Flutter

I'm trying to log user events using firebase_analytics I followed the documentation this my main() method void main() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp( name: "test_app", options: DefaultFirebaseOptions.currentPlatform, ); runApp(const MyApp()); } This is MyApp class class MyApp extends StatelessWidget {…

VIEW QUESTION
Back To Top
Search