skip to Main Content

flutter crashlytics dashboard not showing

-------For app level------ dependencies { implementation platform('com.google.firebase:firebase-bom:32.3.1') implementation("com.google.firebase:firebase-crashlytics") implementation 'com.google.firebase:firebase-analytics' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" } apply plugin: 'com.android.application' apply plugin: 'com.google.gms.google-services' apply plugin: 'com.google.firebase.crashlytics' apply plugin: 'kotlin-android' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" -------For project level------ dependencies { classpath 'com.google.gms:google-services:4.4.0' classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9' classpath 'com.android.tools.build:gradle:7.3.0' classpath…

VIEW QUESTION

Flutter – Function returns null

var result; void searching() async{ var searchData = await FirebaseFirestore.instance.collection('users').where('email',isEqualTo: userEmail).get(); setState(() { result = searchData.docs.first; }); } void addFollowing(var username , var email , var phoneNumber) async{ searching(); await FirebaseFirestore.instance.collection('users').doc(result).collection('following').doc().set({ 'username':username, 'email':email, 'phoneNumber':phoneNumber }); print(result); } I have two…

VIEW QUESTION

Firebase initialize issue

I am trying to initialize firebase in my project. I need to use the Google Auth feature, which is already enabled on the console of firebase. The method I am calling is the following: import firebase from 'firebase/compat/app'; import {…

VIEW QUESTION
Back To Top
Search